Changeset 28475 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/d3d9_private.h
- Timestamp:
- Apr 19, 2010 3:27:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/d3d9_private.h
r25949 r28475 197 197 UINT iSwapChain, IDirect3DSwapChain9 **pSwapChain) DECLSPEC_HIDDEN; 198 198 extern UINT WINAPI IDirect3DDevice9Impl_GetNumberOfSwapChains(IDirect3DDevice9Ex *iface) DECLSPEC_HIDDEN; 199 extern HRESULT WINAPI IDirect3DDevice9Impl_CreateStateBlock(IDirect3DDevice9Ex *iface,200 D3DSTATEBLOCKTYPE Type, IDirect3DStateBlock9 **ppSB) DECLSPEC_HIDDEN;201 extern HRESULT WINAPI IDirect3DDevice9Impl_BeginStateBlock(IDirect3DDevice9Ex *iface) DECLSPEC_HIDDEN;202 extern HRESULT WINAPI IDirect3DDevice9Impl_EndStateBlock(IDirect3DDevice9Ex *iface,203 IDirect3DStateBlock9 **ppSB) DECLSPEC_HIDDEN;204 199 extern HRESULT WINAPI IDirect3DDevice9Impl_SetVertexDeclaration(IDirect3DDevice9Ex *iface, 205 200 IDirect3DVertexDeclaration9 *pDecl) DECLSPEC_HIDDEN; … … 238 233 extern HRESULT WINAPI IDirect3DDevice9Impl_GetPixelShaderConstantB(IDirect3DDevice9Ex *iface, 239 234 UINT StartRegister, BOOL *pConstantData, UINT BoolCount) DECLSPEC_HIDDEN; 240 extern HRESULT WINAPI IDirect3DDevice9Impl_CreateQuery(IDirect3DDevice9Ex *iface,241 D3DQUERYTYPE Type, IDirect3DQuery9 **ppQuery) DECLSPEC_HIDDEN;242 243 235 244 236 /* ---------------- */ … … 480 472 } IDirect3DStateBlock9Impl; 481 473 474 HRESULT stateblock_init(IDirect3DStateBlock9Impl *stateblock, IDirect3DDevice9Impl *device, 475 D3DSTATEBLOCKTYPE type, IWineD3DStateBlock *wined3d_stateblock) DECLSPEC_HIDDEN; 482 476 483 477 /* --------------------------- */ … … 574 568 } IDirect3DQuery9Impl; 575 569 570 HRESULT query_init(IDirect3DQuery9Impl *query, IDirect3DDevice9Impl *device, 571 D3DQUERYTYPE type) DECLSPEC_HIDDEN; 572 576 573 #endif /* __WINE_D3D9_PRIVATE_H */
Note:
See TracChangeset
for help on using the changeset viewer.