1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

#36 export DirectDrawCreateClipper

This commit is contained in:
FunkyFr3sh 2020-07-23 22:45:46 +02:00
parent a240c78a84
commit a31d58c4c0
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@ LIBRARY ddraw.dll
EXPORTS
DirectDrawCreate @1
DirectDrawEnumerateA @2
DirectDrawCreateClipper @10
GameHandlesClose DATA
NvOptimusEnablement DATA
AmdPowerXpressRequestHighPerformance DATA

View File

@ -1841,6 +1841,11 @@ struct IDirectDrawImplVtbl iface =
ddraw_GetAvailableVidMem
};
HRESULT WINAPI DirectDrawCreateClipper(DWORD dwFlags, LPDIRECTDRAWCLIPPER FAR *lplpDDClipper, IUnknown FAR *pUnkOuter)
{
return ddraw_CreateClipper(NULL, dwFlags, lplpDDClipper, pUnkOuter);
}
HRESULT WINAPI DirectDrawEnumerateA(LPDDENUMCALLBACK lpCallback, LPVOID lpContext)
{
printf("??? DirectDrawEnumerateA(lpCallback=%p, lpContext=%p)\n", lpCallback, lpContext);