Searched refs:SDL_COMPILE_TIME_ASSERT (Results 1 – 1 of 1) sorted by relevance
/external/qemu/distrib/sdl-1.2.15/include/ |
D | SDL_stdinc.h | 122 #define SDL_COMPILE_TIME_ASSERT(name, x) \ macro 125 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); 126 SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); 127 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); 128 SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); 129 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 130 SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); 131 SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); 132 SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); 151 SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
|