Module: wine Branch: master Commit: 69bc2af99042edc9f01ea0944816edde65cd840a URL: http://source.winehq.org/git/wine.git/?a=commit;h=69bc2af99042edc9f01ea09448...
Author: Francois Gouget fgouget@free.fr Date: Fri Aug 3 00:53:44 2007 +0200
d3d9: Declare the D3DPERF_Xxx() functions in d3d9.h.
---
include/d3d9.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/include/d3d9.h b/include/d3d9.h index c6c3004..1eca362 100644 --- a/include/d3d9.h +++ b/include/d3d9.h @@ -1479,10 +1479,19 @@ DECLARE_INTERFACE_(IDirect3DDevice9,IUnknown) #define IDirect3DDevice9_CreateQuery(p,a,b) (p)->CreateQuery(a,b) #endif
+ #ifdef __cplusplus extern "C" { #endif /* defined(__cplusplus) */
+int WINAPI D3DPERF_BeginEvent(D3DCOLOR,LPCWSTR); +int WINAPI D3DPERF_EndEvent(void); +DWORD WINAPI D3DPERF_GetStatus(void); +BOOL WINAPI D3DPERF_QueryRepeatFrame(void); +void WINAPI D3DPERF_SetMarker(D3DCOLOR,LPCWSTR); +void WINAPI D3DPERF_SetOptions(DWORD); +void WINAPI D3DPERF_SetRegion(D3DCOLOR,LPCWSTR); + /* Define the main entrypoint as well */ IDirect3D9* WINAPI Direct3DCreate9(UINT SDKVersion);