(svn r11684) -Codechange: split gfx.h in a type and functional header.

This commit is contained in:
rubidium
2007-12-23 10:56:02 +00:00
parent 82d240e300
commit a773d45885
64 changed files with 343 additions and 287 deletions

View File

@@ -374,4 +374,10 @@ assert_compile(sizeof(uint8) == 1);
#define MAX_PATH 260
#endif
/**
* The largest value that can be entered in a variable
* @param type the type of the variable
*/
#define MAX_UVALUE(type) ((type)~(type)0)
#endif /* STDAFX_H */