#36 export DirectDrawCreateClipper
This commit is contained in:
parent
a240c78a84
commit
a31d58c4c0
2 changed files with 6 additions and 0 deletions
|
@ -3,6 +3,7 @@ LIBRARY ddraw.dll
|
|||
EXPORTS
|
||||
DirectDrawCreate @1
|
||||
DirectDrawEnumerateA @2
|
||||
DirectDrawCreateClipper @10
|
||||
GameHandlesClose DATA
|
||||
NvOptimusEnablement DATA
|
||||
AmdPowerXpressRequestHighPerformance DATA
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue