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
d084a18c
Commit
d084a18c
authored
May 02, 1999
by
Ove Kaaven
Committed by
Alexandre Julliard
May 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added prototype for TryEnterCriticalSection.
parent
b24a67f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
45 deletions
+1
-45
winbase.h
include/winbase.h
+1
-45
No files found.
include/winbase.h
View file @
d084a18c
...
...
@@ -1112,13 +1112,6 @@ DECL_WINELIB_TYPE_AW(OSVERSIONINFO)
#define VER_PLATFORM_WIN32_WINDOWS 1
#define VER_PLATFORM_WIN32_NT 2
typedef
struct
tagCOMSTAT16
{
BYTE
status
;
UINT16
cbInQue
WINE_PACKED
;
UINT16
cbOutQue
WINE_PACKED
;
}
COMSTAT16
,
*
LPCOMSTAT16
;
typedef
struct
tagCOMSTAT
{
DWORD
status
;
...
...
@@ -1126,44 +1119,6 @@ typedef struct tagCOMSTAT
DWORD
cbOutQue
;
}
COMSTAT
,
*
LPCOMSTAT
;
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
;
typedef
struct
tagDCB
{
DWORD
DCBlength
;
...
...
@@ -1233,6 +1188,7 @@ BOOL WINAPI GetVersionExW(OSVERSIONINFOW*);
void
WINAPI
DeleteCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
void
WINAPI
EnterCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
BOOL
WINAPI
TryEnterCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
void
WINAPI
InitializeCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
void
WINAPI
LeaveCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
void
WINAPI
MakeCriticalSectionGlobal
(
CRITICAL_SECTION
*
lpCrit
);
...
...
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