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
e0fa0369
Commit
e0fa0369
authored
Sep 25, 2001
by
Ove Kaaven
Committed by
Alexandre Julliard
Sep 25, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some named pipe definitions.
parent
c3ee6928
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
winbase.h
include/winbase.h
+11
-0
No files found.
include/winbase.h
View file @
e0fa0369
...
...
@@ -808,6 +808,10 @@ typedef struct
#define PIPE_UNLIMITED_INSTANCES 255
#define NMPWAIT_WAIT_FOREVER 0xffffffff
#define NMPWAIT_NOWAIT 0x00000001
#define NMPWAIT_USE_DEFAULT_WAIT 0x00000000
typedef
struct
_SYSTEM_POWER_STATUS
{
BYTE
ACLineStatus
;
...
...
@@ -1255,6 +1259,7 @@ BOOL WINAPI CloseHandle(HANDLE);
BOOL
WINAPI
CommConfigDialogA
(
LPCSTR
,
HANDLE
,
LPCOMMCONFIG
);
BOOL
WINAPI
CommConfigDialogW
(
LPCWSTR
,
HANDLE
,
LPCOMMCONFIG
);
#define CommConfigDialog WINELIB_NAME_AW(CommConfigDialog)
BOOL
WINAPI
ConnectNamedPipe
(
HANDLE
,
LPOVERLAPPED
);
BOOL
WINAPI
ContinueDebugEvent
(
DWORD
,
DWORD
,
DWORD
);
HANDLE
WINAPI
ConvertToGlobalHandle
(
HANDLE
hSrc
);
BOOL
WINAPI
CopyFileA
(
LPCSTR
,
LPCSTR
,
BOOL
);
...
...
@@ -1281,6 +1286,9 @@ HANDLE WINAPI CreateFileMappingW(HANDLE,LPSECURITY_ATTRIBUTES,DWORD,
HANDLE
WINAPI
CreateMutexA
(
LPSECURITY_ATTRIBUTES
,
BOOL
,
LPCSTR
);
HANDLE
WINAPI
CreateMutexW
(
LPSECURITY_ATTRIBUTES
,
BOOL
,
LPCWSTR
);
#define CreateMutex WINELIB_NAME_AW(CreateMutex)
HANDLE
WINAPI
CreateNamedPipeA
(
LPCSTR
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
LPSECURITY_ATTRIBUTES
);
HANDLE
WINAPI
CreateNamedPipeW
(
LPCWSTR
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
LPSECURITY_ATTRIBUTES
);
#define CreateNamedPipe WINELIB_NAME_AW(CreateNamedPipe)
BOOL
WINAPI
CreatePipe
(
PHANDLE
,
PHANDLE
,
LPSECURITY_ATTRIBUTES
,
DWORD
);
BOOL
WINAPI
CreateProcessA
(
LPCSTR
,
LPSTR
,
LPSECURITY_ATTRIBUTES
,
LPSECURITY_ATTRIBUTES
,
BOOL
,
DWORD
,
LPVOID
,
LPCSTR
,
...
...
@@ -1607,6 +1615,9 @@ DWORD WINAPI WaitForMultipleObjects(DWORD,const HANDLE*,BOOL,DWORD);
DWORD
WINAPI
WaitForMultipleObjectsEx
(
DWORD
,
const
HANDLE
*
,
BOOL
,
DWORD
,
BOOL
);
DWORD
WINAPI
WaitForSingleObject
(
HANDLE
,
DWORD
);
DWORD
WINAPI
WaitForSingleObjectEx
(
HANDLE
,
DWORD
,
BOOL
);
BOOL
WINAPI
WaitNamedPipeA
(
LPCSTR
,
DWORD
);
BOOL
WINAPI
WaitNamedPipeW
(
LPCWSTR
,
DWORD
);
#define WaitNamedPipe WINELIB_NAME_AW(WaitNamedPipe)
BOOL
WINAPI
WriteConsoleA
(
HANDLE
,
LPCVOID
,
DWORD
,
LPDWORD
,
LPVOID
);
BOOL
WINAPI
WriteConsoleW
(
HANDLE
,
LPCVOID
,
DWORD
,
LPDWORD
,
LPVOID
);
#define WriteConsole WINELIB_NAME_AW(WriteConsole)
...
...
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