24 lines
970 B
C++
Executable File
24 lines
970 B
C++
Executable File
#ifndef APE_GLOBALFUNCTIONS_H
|
|
#define APE_GLOBALFUNCTIONS_H
|
|
|
|
/*************************************************************************************
|
|
Definitions
|
|
*************************************************************************************/
|
|
class CIO;
|
|
|
|
/*************************************************************************************
|
|
Read / Write from an IO source and return failure if the number of bytes specified
|
|
isn't read or written
|
|
*************************************************************************************/
|
|
int ReadSafe(CIO * pIO, void * pBuffer, int nBytes);
|
|
int WriteSafe(CIO * pIO, void * pBuffer, int nBytes);
|
|
|
|
/*************************************************************************************
|
|
Checks for the existence of a file
|
|
*************************************************************************************/
|
|
BOOL FileExists(const char * pFilename);
|
|
|
|
int IsAltiVecAvailable( void );
|
|
|
|
#endif // #ifndef APE_GLOBALFUNCTIONS_H
|