mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
20 lines
634 B
C
20 lines
634 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#ifdef DirectDrawCreate
|
||
|
#undef DirectDrawCreate
|
||
|
#endif
|
||
|
|
||
|
#define DirectDrawCreate \
|
||
|
((HRESULT(__stdcall *)( \
|
||
|
GUID * driver_guid, LPDIRECTDRAW * ddraw, LPUNKNOWN outer))0x00458CF4)
|
||
|
|
||
|
#ifdef DirectDrawEnumerate
|
||
|
#undef DirectDrawEnumerate
|
||
|
#endif
|
||
|
|
||
|
#define DirectDrawEnumerate \
|
||
|
((HRESULT(__stdcall *)( \
|
||
|
LPDDENUMCALLBACKA lpCallback, LPVOID lpContext))0x00458CFA)
|