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
32ec5284
Commit
32ec5284
authored
Nov 09, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Bring the function definitions in sync with their declaration.
They got out of sync due to the unsigned long to ULONG changes in the headers.
parent
0628fb50
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
ndr_clientserver.c
dlls/rpcrt4/ndr_clientserver.c
+3
-3
ndr_fullpointer.c
dlls/rpcrt4/ndr_fullpointer.c
+8
-8
ndr_ole.c
dlls/rpcrt4/ndr_ole.c
+2
-2
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+2
-2
No files found.
dlls/rpcrt4/ndr_clientserver.c
View file @
32ec5284
...
...
@@ -129,7 +129,7 @@ unsigned char* WINAPI NdrServerInitializeNew( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_M
/***********************************************************************
* NdrGetBuffer [RPCRT4.@]
*/
unsigned
char
*
WINAPI
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
long
buflen
,
RPC_BINDING_HANDLE
handle
)
unsigned
char
*
WINAPI
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
ULONG
buflen
,
RPC_BINDING_HANDLE
handle
)
{
TRACE
(
"(stubmsg == ^%p, buflen == %lu, handle == %p): wild guess.
\n
"
,
stubmsg
,
buflen
,
handle
);
...
...
@@ -195,8 +195,8 @@ unsigned char *WINAPI NdrSendReceive( MIDL_STUB_MESSAGE *stubmsg, unsigned char
* NdrMapCommAndFaultStatus [RPCRT4.@]
*/
RPC_STATUS
RPC_ENTRY
NdrMapCommAndFaultStatus
(
PMIDL_STUB_MESSAGE
pStubMsg
,
unsigned
long
*
pCommStatus
,
unsigned
long
*
pFaultStatus
,
ULONG
*
pCommStatus
,
ULONG
*
pFaultStatus
,
RPC_STATUS
Status
)
{
FIXME
(
"(%p, %p, %p, %ld): stub
\n
"
,
pStubMsg
,
pCommStatus
,
pFaultStatus
,
Status
);
...
...
dlls/rpcrt4/ndr_fullpointer.c
View file @
32ec5284
...
...
@@ -29,10 +29,10 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
rpc
);
PFULL_PTR_XLAT_TABLES
WINAPI
NdrFullPointerXlatInit
(
unsigned
long
NumberOfPointers
,
PFULL_PTR_XLAT_TABLES
WINAPI
NdrFullPointerXlatInit
(
ULONG
NumberOfPointers
,
XLAT_SIDE
XlatSide
)
{
unsigned
long
NumberOfBuckets
;
ULONG
NumberOfBuckets
;
PFULL_PTR_XLAT_TABLES
pXlatTables
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
pXlatTables
));
TRACE
(
"(%ld, %d)
\n
"
,
NumberOfPointers
,
XlatSide
);
...
...
@@ -93,9 +93,9 @@ static void expand_pointer_table_if_necessary(PFULL_PTR_XLAT_TABLES pXlatTables,
int
WINAPI
NdrFullPointerQueryPointer
(
PFULL_PTR_XLAT_TABLES
pXlatTables
,
void
*
pPointer
,
unsigned
char
QueryType
,
unsigned
long
*
pRefId
)
ULONG
*
pRefId
)
{
unsigned
long
Hash
=
0
;
ULONG
Hash
=
0
;
int
i
;
PFULL_PTR_TO_REFID_ELEMENT
XlatTableEntry
;
...
...
@@ -141,8 +141,8 @@ int WINAPI NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables,
}
int
WINAPI
NdrFullPointerQueryRefId
(
PFULL_PTR_XLAT_TABLES
pXlatTables
,
unsigned
long
RefId
,
unsigned
char
QueryType
,
void
**
ppPointer
)
ULONG
RefId
,
unsigned
char
QueryType
,
void
**
ppPointer
)
{
TRACE
(
"(%p, 0x%lx, %d, %p)
\n
"
,
pXlatTables
,
RefId
,
QueryType
,
ppPointer
);
...
...
@@ -168,9 +168,9 @@ int WINAPI NdrFullPointerQueryRefId(PFULL_PTR_XLAT_TABLES pXlatTables,
}
void
WINAPI
NdrFullPointerInsertRefId
(
PFULL_PTR_XLAT_TABLES
pXlatTables
,
unsigned
long
RefId
,
void
*
pPointer
)
ULONG
RefId
,
void
*
pPointer
)
{
unsigned
long
Hash
=
0
;
ULONG
Hash
=
0
;
int
i
;
PFULL_PTR_TO_REFID_ELEMENT
XlatTableEntry
;
...
...
dlls/rpcrt4/ndr_ole.c
View file @
32ec5284
...
...
@@ -321,8 +321,8 @@ void WINAPI NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
/***********************************************************************
* NdrInterfacePointerMemorySize [RPCRT4.@]
*/
unsigned
long
WINAPI
NdrInterfacePointerMemorySize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
PFORMAT_STRING
pFormat
)
ULONG
WINAPI
NdrInterfacePointerMemorySize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
PFORMAT_STRING
pFormat
)
{
ULONG
size
;
...
...
dlls/rpcrt4/ndr_stubless.c
View file @
32ec5284
...
...
@@ -1076,11 +1076,11 @@ static DWORD calc_arg_size(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
}
/* FIXME: need to free some stuff in here too */
long
WINAPI
NdrStubCall2
(
LONG
WINAPI
NdrStubCall2
(
struct
IRpcStubBuffer
*
pThis
,
struct
IRpcChannelBuffer
*
pChannel
,
PRPC_MESSAGE
pRpcMsg
,
unsigned
long
*
pdwStubPhase
)
DWORD
*
pdwStubPhase
)
{
const
MIDL_SERVER_INFO
*
pServerInfo
;
const
MIDL_STUB_DESC
*
pStubDesc
;
...
...
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