1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Some includes can be used on Mac OS X now (bug 3515, r=ds).

This commit is contained in:
David Anderson
2008-12-22 23:33:59 -05:00
parent 7ff7f366d5
commit 168e6792f9
7 changed files with 26 additions and 8 deletions

View File

@ -167,8 +167,8 @@ public:
void SetColor( const char *keyName, Color value);
// Memory allocation (optimized)
void *operator new( unsigned int iAllocSize );
void *operator new( unsigned int iAllocSize, int nBlockUse, const char *pFileName, int nLine );
void *operator new( size_t iAllocSize );
void *operator new( size_t iAllocSize, int nBlockUse, const char *pFileName, int nLine );
void operator delete( void *pMem );
void operator delete( void *pMem, int nBlockUse, const char *pFileName, int nLine );