VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/switcher/switcher.h@ 32580

Last change on this file since 32580 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1/* $Id: switcher.h 28800 2010-04-27 08:22:32Z vboxsync $ */
2
3/** @file
4 * VBox D3D8/9 dll switcher
5 */
6
7/*
8 * Copyright (C) 2009 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ___CROPENGL_SWITCHER_H_
20#define ___CROPENGL_SWITCHER_H_
21
22typedef BOOL (APIENTRY *DrvValidateVersionProc)(DWORD version);
23
24#define SW_FILLPROC(dispatch, hdll, name) \
25 dispatch.p##name = (name##Proc) GetProcAddress(hdll, #name);
26
27#define SW_DISPINIT(dispatch) \
28 { \
29 if (!dispatch.initialized) \
30 { \
31 InitD3DExports(dispatch.vboxName, dispatch.msName); \
32 dispatch.initialized = 1; \
33 } \
34 }
35
36#define SW_CHECKRET(dispatch, func, failret) \
37 { \
38 SW_DISPINIT(dispatch) \
39 if (!dispatch.p##func) \
40 return failret; \
41 }
42
43#define SW_CHECKCALL(dispatch, func) \
44 { \
45 SW_DISPINIT(dispatch) \
46 if (!dispatch.p##func) return; \
47 }
48
49extern BOOL IsVBox3DEnabled(void);
50extern BOOL CheckOptions(void);
51extern void FillD3DExports(HANDLE hDLL);
52extern void InitD3DExports(const char *vboxName, const char *msName);
53
54#endif /* #ifndef ___CROPENGL_SWITCHER_H_ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette