mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
initial checkin
This commit is contained in:
21
MAC_SDK/Source/Shared/GlobalFunctions.h
Normal file
21
MAC_SDK/Source/Shared/GlobalFunctions.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#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(wchar_t * pFilename);
|
||||
|
||||
#endif // #ifndef APE_GLOBALFUNCTIONS_H
|
||||
Reference in New Issue
Block a user