mirror of
https://github.com/1dot13/source.git
synced 2026-08-26 14:30:26 +02:00
Rename 'Standard Gaming Platform' to 'sgp' (#246)
* rename 'Standard Gaming Platform' to 'sgp' * Adapt CMakeLists.txt files to renamed SGP directory * Lowercase it
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#ifndef __WCHECK_
|
||||
#define __WCHECK_
|
||||
|
||||
#define CHECKF(exp) if (!(exp)) { return(FALSE); }
|
||||
#define CHECKV(exp) if (!(exp)) { return; }
|
||||
#define CHECKN(exp) if (!(exp)) { return(NULL); }
|
||||
#define CHECKBI(exp) if (!(exp)) { return(-1); }
|
||||
|
||||
#define CHECKASSERTF(exp) if (!(exp)) { ASSERT(0); return(FALSE); }
|
||||
#define CHECKASSERTV(exp) if (!(exp)) { ASSERT(0); return; }
|
||||
#define CHECKASSERTN(exp) if (!(exp)) { ASSERT(0); return(NULL); }
|
||||
#define CHECKASSERTBI(exp) if (!(exp)) { ASSERT(0); return(-1); }
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user