Go to the source code of this file.
Defines | |
| #define | __orxLITTLE_ENDIAN__ |
| #define | orxALIGN(ADDRESS, BLOCK_SIZE) (((ADDRESS) + ((BLOCK_SIZE) - 1)) & (~((BLOCK_SIZE) - 1))) |
| #define | orxALIGN16(ADDRESS) orxALIGN(ADDRESS, 16) |
| #define | orxALIGN32(ADDRESS) orxALIGN(ADDRESS, 32) |
| #define | orxALIGN64(ADDRESS) orxALIGN(ADDRESS, 64) |
| #define | orxDLLAPI orxIMPORT orxDLLEXPORT |
| #define | orxFLAG_GET(X, M) ((X) & (M)) |
| #define | orxFLAG_SET(X, A, R) |
| #define | orxFLAG_SWAP(X, S) ((X) ^= (S)) |
| #define | orxFLAG_TEST(X, F) (((X) & (F)) != 0) |
| #define | orxFLAG_TEST_ALL(X, F) (((X) & (F)) == (F)) |
| #define | orxIMPORT |
| #define | orxPAD(SIZE) |
Definition in file orxDecl.h.
1.5.6