Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a6663e85
Commit
a6663e85
authored
Nov 08, 1998
by
Ulrich Weigand
Committed by
Alexandre Julliard
Nov 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for DISPLAY.DRV removed from keyboard.c.
parent
bf844a4f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
display.c
windows/display.c
+74
-0
No files found.
windows/display.c
0 → 100644
View file @
a6663e85
/*
* DISPLAY driver
*
* Copyright 1998 Ulrich Weigand
*
*/
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "ts_xlib.h"
#include "ts_xresource.h"
#include "ts_xutil.h"
#include "windows.h"
#include "win.h"
#include "gdi.h"
#include "heap.h"
#include "debug.h"
#include "debugtools.h"
/***********************************************************************
* DisplayInquire (DISPLAY.101)
*/
#pragma pack(1)
typedef
struct
_CURSORINFO
{
WORD
wXMickeys
;
WORD
wYMickeys
;
}
CURSORINFO
;
#pragma pack(4)
WORD
WINAPI
DisplayInquire
(
CURSORINFO
*
cursorInfo
)
{
cursorInfo
->
wXMickeys
=
1
;
cursorInfo
->
wYMickeys
=
1
;
return
sizeof
(
CURSORINFO
);
}
/***********************************************************************
* DisplaySetCursor (DISPLAY.102)
*/
VOID
WINAPI
DisplaySetCursor
(
LPVOID
cursorShape
)
{
FIXME
(
keyboard
,
"(%p): stub
\n
"
,
cursorShape
);
}
/***********************************************************************
* DisplayMoveCursor (DISPLAY.103)
*/
VOID
WINAPI
DisplayMoveCursor
(
WORD
wAbsX
,
WORD
wAbsY
)
{
FIXME
(
keyboard
,
"(%d,%d): stub
\n
"
,
wAbsX
,
wAbsY
);
}
/***********************************************************************
* DisplayCheckCursor (DISPLAY.104)
*/
VOID
WINAPI
DisplayCheckCursor
()
{
FIXME
(
keyboard
,
"stub
\n
"
);
}
/***********************************************************************
* UserRepaintDisable (DISPLAY.103)
*/
VOID
WINAPI
UserRepaintDisable
(
BOOL16
disable
)
{
FIXME
(
keyboard
,
"(%d): stub
\n
"
,
disable
);
}
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