Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

file.hpp File Reference

#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)


Function Documentation

template<class T>
void RawRead ICFile   file,
T &    x
[inline]
 

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 }

template<class T>
void RawWrite ICFile   file,
const T &    x
[inline]
 

Definition at line 77 of file file.hpp.

References ICFile::RawWrite().

Referenced by WriteIcons().

00078 {
00079   file.RawWrite(&x,sizeof(T));
00080 }


Generated on Mon Jan 13 22:20:35 2003 for perdr by doxygen1.2.15