Searched refs:SDL_COMPILE_TIME_ASSERT (Results 1 – 1 of 1) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/include/ |
D | SDL_stdinc.h | 106 #define SDL_COMPILE_TIME_ASSERT(name, x) \ macro 109 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); 110 SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); 111 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); 112 SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); 113 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 114 SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); 115 SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); 116 SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); 133 SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
|