#include <stdio.h>
Go to the source code of this file.
Compounds | |
class | CFile |
class | ICFile |
Functions | |
template<class T> void | RawRead (ICFile &file, T &x) |
template<class T> void | RawWrite (ICFile &file, const T &x) |
|
Definition at line 71 of file file.hpp. References ICFile::RawRead(). Referenced by MarkImport(), PeFile::ParseExport(), PeFile::ParseImport(), PeFile::ParseRelocations(), ParseResourceDirectory(), PeFile::PeFile(), and WriteIcons().
00072 { 00073 file.RawRead(&x,sizeof(T)); 00074 } |
|
Definition at line 77 of file file.hpp. References ICFile::RawWrite(). Referenced by WriteIcons().
00078 { 00079 file.RawWrite(&x,sizeof(T)); 00080 } |