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
92ae219e
Commit
92ae219e
authored
May 02, 1999
by
Michael Veksler
Committed by
Alexandre Julliard
May 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed redundant include of winbase.h from winuser16.h.
Moved types from winbase.h to winuser16.h .
parent
ea7ff970
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
56 additions
and
6 deletions
+56
-6
winuser16.h
include/wine/winuser16.h
+50
-3
spooler.c
misc/spooler.c
+2
-1
time.c
multimedia/time.c
+1
-1
dib.c
objects/dib.c
+1
-0
palette.c
objects/palette.c
+2
-1
No files found.
include/wine/winuser16.h
View file @
92ae219e
#ifndef __WINE_WINUSER16_H
#define __WINE_WINUSER16_H
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winuser.h"
/* winuser.h needed for MSGBOXCALLBACK */
/* wingdi.h needed for COLORREF */
#include "pshpack1.h"
typedef
struct
tagCOMSTAT16
{
BYTE
status
;
UINT16
cbInQue
WINE_PACKED
;
UINT16
cbOutQue
WINE_PACKED
;
}
COMSTAT16
,
*
LPCOMSTAT16
;
typedef
struct
tagDCB16
{
BYTE
Id
;
UINT16
BaudRate
WINE_PACKED
;
BYTE
ByteSize
;
BYTE
Parity
;
BYTE
StopBits
;
UINT16
RlsTimeout
;
UINT16
CtsTimeout
;
UINT16
DsrTimeout
;
unsigned
fBinary
:
1
;
unsigned
fRtsDisable
:
1
;
unsigned
fParity
:
1
;
unsigned
fOutxCtsFlow
:
1
;
unsigned
fOutxDsrFlow
:
1
;
unsigned
fDummy
:
2
;
unsigned
fDtrDisable
:
1
;
unsigned
fOutX
:
1
;
unsigned
fInX
:
1
;
unsigned
fPeChar
:
1
;
unsigned
fNull
:
1
;
unsigned
fChEvt
:
1
;
unsigned
fDtrflow
:
1
;
unsigned
fRtsflow
:
1
;
unsigned
fDummy2
:
1
;
CHAR
XonChar
;
CHAR
XoffChar
;
UINT16
XonLim
;
UINT16
XoffLim
;
CHAR
PeChar
;
CHAR
EofChar
;
CHAR
EvtChar
;
UINT16
TxDelay
WINE_PACKED
;
}
DCB16
,
*
LPDCB16
;
/* SetWindowPlacement() struct */
typedef
struct
{
...
...
misc/spooler.c
View file @
92ae219e
...
...
@@ -12,12 +12,13 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "winbase.h"
#include "wine/winuser16.h"
#include "callback.h"
#include "dc.h"
#include "debug.h"
#include "gdi.h"
#include "options.h"
#include "wine/winuser16.h"
#include "winerror.h"
#include "xmalloc.h"
...
...
multimedia/time.c
View file @
92ae219e
...
...
@@ -9,7 +9,7 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "win
def
.h"
#include "win
base
.h"
#include "wine/winbase16.h"
/* GetTaskDS */
#include "callback.h"
#include "mmsystem.h"
...
...
objects/dib.c
View file @
92ae219e
...
...
@@ -5,6 +5,7 @@
*
*/
#include "winbase.h"
#include "bitmap.h"
#include "callback.h"
#include "dc.h"
...
...
objects/palette.c
View file @
92ae219e
...
...
@@ -11,12 +11,13 @@
#include <stdlib.h>
#include <string.h>
#include "winbase.h"
#include "wine/winuser16.h"
#include "gdi.h"
#include "color.h"
#include "palette.h"
#include "xmalloc.h"
#include "debug.h"
#include "wine/winuser16.h"
DEFAULT_DEBUG_CHANNEL
(
palette
)
...
...
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