| #ifndef OS_H | |
| #define OS_H | |
| #define MAKE_UINT(a,b,c,d) (UINT)(a | (UINT)b <<8 | (UINT)c <<16 | (UINT)d<<24) | |
| #ifdef WINDOWS | |
| #include "windows.h" | |
| #include "windef.h" | |
| #include "shlobj.h" | |
| #else | |
| //*NIX systems | |
| #define UINT unsigned int | |
| #define BYTE unsigned char | |
| #endif | |
| #endif |