blob: b71c9f939d8869d8792d64c4aa4962dad36e1628 [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