MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / save_to

Method save_to

ogsr_engine/xrCore/FS.cpp:99–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99bool CMemoryWriter::save_to(LPCSTR fn) const
100{
101 IWriter* F = FS.w_open(fn);
102 if (F)
103 {
104 F->w(pointer(), size());
105 FS.w_close(F);
106 return true;
107 }
108 return false;
109}
110
111void IWriter::open_chunk(u32 type)
112{

Callers 3

net_SaveMethod · 0.80
SaveMotionMethod · 0.80
SaveMethod · 0.80

Calls 5

pointerFunction · 0.85
w_openMethod · 0.80
w_closeMethod · 0.80
sizeFunction · 0.70
wMethod · 0.45

Tested by

no test coverage detected