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
7cf104aa
Commit
7cf104aa
authored
Jan 14, 2005
by
Ge van Geldorp
Committed by
Alexandre Julliard
Jan 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix prototypes according to PSDK.
parent
ba0475e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+2
-2
rpcdce.h
include/rpcdce.h
+2
-2
No files found.
dlls/rpcrt4/rpcrt4_main.c
View file @
7cf104aa
...
...
@@ -763,7 +763,7 @@ BOOL RPCRT4_RPCSSOnDemandCall(PRPCSS_NP_MESSAGE msg, char *vardata_payload, PRPC
#define MAX_RPC_ERROR_TEXT 256
RPC_STATUS
RPC_ENTRY
DceErrorInqTextW
(
unsigned
long
e
,
unsigned
short
*
buffer
)
RPC_STATUS
RPC_ENTRY
DceErrorInqTextW
(
RPC_STATUS
e
,
unsigned
short
*
buffer
)
{
DWORD
count
;
count
=
FormatMessageW
(
FORMAT_MESSAGE_FROM_SYSTEM
|
...
...
@@ -783,7 +783,7 @@ RPC_STATUS RPC_ENTRY DceErrorInqTextW (unsigned long e, unsigned short *buffer)
return
RPC_S_OK
;
}
RPC_STATUS
RPC_ENTRY
DceErrorInqTextA
(
unsigned
long
e
,
unsigned
char
*
buffer
)
RPC_STATUS
RPC_ENTRY
DceErrorInqTextA
(
RPC_STATUS
e
,
unsigned
char
*
buffer
)
{
RPC_STATUS
status
;
WCHAR
bufferW
[
MAX_RPC_ERROR_TEXT
];
...
...
include/rpcdce.h
View file @
7cf104aa
...
...
@@ -109,8 +109,8 @@ typedef struct _RPC_POLICY
#define RPC_IF_ALLOW_UNKNOWN_AUTHORITY 0x4
#define RPC_IF_ALLOW_SECURE_ONLY 0x8
RPC_STATUS
RPC_ENTRY
DceErrorInqTextA
(
unsigned
long
e
,
unsigned
char
*
buffer
);
RPC_STATUS
RPC_ENTRY
DceErrorInqTextW
(
unsigned
long
e
,
unsigned
short
*
buffer
);
RPC_STATUS
RPC_ENTRY
DceErrorInqTextA
(
RPC_STATUS
e
,
unsigned
char
*
buffer
);
RPC_STATUS
RPC_ENTRY
DceErrorInqTextW
(
RPC_STATUS
e
,
unsigned
short
*
buffer
);
#define DceErrorInqText WINELIB_NAME_AW(DceErrorInqText)
RPCRTAPI
void
RPC_ENTRY
...
...
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