6 using DWORD =
unsigned long;
7 using UINT =
unsigned int;
10 using HINSTANCE = plHINSTANCE*;
11 using HMODULE = HINSTANCE;
17#if PL_ENABLED(PL_PLATFORM_64BIT)
18 using WPARAM = plUInt64;
19 using LPARAM = plUInt64;
21 using WPARAM = plUInt32;
22 using LPARAM = plUInt32;
46 PL_ALWAYS_INLINE
typename FromNativeImpl<T>::type FromNative(T t)
48 return FromNativeImpl<T>::FromNative(t);
51#define PL_WINDOWS_CALLBACK __stdcall
52#define PL_WINDOWS_WINAPI __stdcall
53#define PL_WINDOWS_INVALID_HANDLE_VALUE ((void*)(long long)-1)
Definition MinWindows.h:32
Definition MinWindows.h:27