blob: f45f65e4c839b0c2a809e59772ba9ec5b8d7c1e4 [file] [log] [blame]
#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