Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
69361e08
Commit
69361e08
authored
Apr 22, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved x11drv.h to dlls/x11drv.
parent
b6338878
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
6 deletions
+30
-6
directx.c
dlls/d3d8/directx.c
+11
-3
mesa.c
dlls/ddraw/d3ddevice/mesa.c
+10
-2
wgl.c
dlls/opengl32/wgl.c
+9
-1
x11drv.h
dlls/x11drv/x11drv.h
+0
-0
No files found.
dlls/d3d8/directx.c
View file @
69361e08
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "windef.h"
...
...
@@ -26,13 +28,19 @@
#include "wingdi.h"
#include "wine/debug.h"
#include "config.h"
#include "x11drv.h"
#include "d3d8_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
/* x11drv GDI escapes */
#define X11DRV_ESCAPE 6789
enum
x11drv_escape_codes
{
X11DRV_GET_DISPLAY
,
/* get X11 display for a DC */
X11DRV_GET_DRAWABLE
,
/* get current drawable for a DC */
X11DRV_GET_FONT
,
/* get current X font for a DC */
};
#define NUM_MODES 10
static
const
int
modes
[
NUM_MODES
][
3
]
=
{
{
640
,
480
,
85
},
...
...
dlls/ddraw/d3ddevice/mesa.c
View file @
69361e08
...
...
@@ -22,6 +22,7 @@
#include "config.h"
#include <string.h>
#include <math.h>
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
...
...
@@ -35,10 +36,17 @@
#include "mesa_private.h"
#include "main.h"
#include "x11drv.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
/* x11drv GDI escapes */
#define X11DRV_ESCAPE 6789
enum
x11drv_escape_codes
{
X11DRV_GET_DISPLAY
,
/* get X11 display for a DC */
X11DRV_GET_DRAWABLE
,
/* get current drawable for a DC */
X11DRV_GET_FONT
,
/* get current X font for a DC */
};
/* They are non-static as they are used by Direct3D in the creation function */
const
GUID
IID_D3DDEVICE_OpenGL
=
{
0x31416d44
,
...
...
dlls/opengl32/wgl.c
View file @
69361e08
...
...
@@ -26,7 +26,6 @@
#include "winbase.h"
#include "winuser.h"
#include "winerror.h"
#include "x11drv.h"
#include "wgl.h"
#include "opengl_ext.h"
...
...
@@ -34,6 +33,15 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
opengl
);
/* x11drv GDI escapes */
#define X11DRV_ESCAPE 6789
enum
x11drv_escape_codes
{
X11DRV_GET_DISPLAY
,
/* get X11 display for a DC */
X11DRV_GET_DRAWABLE
,
/* get current drawable for a DC */
X11DRV_GET_FONT
,
/* get current X font for a DC */
};
void
(
*
wine_tsx11_lock_ptr
)(
void
)
=
NULL
;
void
(
*
wine_tsx11_unlock_ptr
)(
void
)
=
NULL
;
...
...
include
/x11drv.h
→
dlls/x11drv
/x11drv.h
View file @
69361e08
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment