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
84ab2e78
Commit
84ab2e78
authored
Jun 01, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Implement I_RpcAllocate and I_RpcFree.
parent
cc9baf36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+16
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
84ab2e78
...
...
@@ -19,7 +19,7 @@
@ stdcall IUnknown_QueryInterface_Proxy(ptr ptr ptr)
@ stdcall IUnknown_Release_Proxy(ptr)
@ stub I_RpcAbortAsyncCall
@ st
ub I_RpcAllocate
@ st
dcall I_RpcAllocate(long)
@ stub I_RpcAsyncAbortCall
@ stub I_RpcAsyncSendReceive # NT4
@ stub I_RpcAsyncSetHandle
...
...
@@ -45,7 +45,7 @@
@ stub I_RpcDeleteMutex
@ stub I_RpcEnableWmiTrace # wxp
@ stub I_RpcExceptionFilter # wxp
@ st
ub I_RpcFree
@ st
dcall I_RpcFree(ptr)
@ stdcall I_RpcFreeBuffer(ptr)
@ stub I_RpcFreePipeBuffer
@ stub I_RpcGetAssociationContext
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
84ab2e78
...
...
@@ -800,3 +800,19 @@ RPC_STATUS RPC_ENTRY DceErrorInqTextA (RPC_STATUS e, unsigned char *buffer)
}
return
status
;
}
/******************************************************************************
* I_RpcAllocate (rpcrt4.@)
*/
void
*
WINAPI
I_RpcAllocate
(
unsigned
int
Size
)
{
return
HeapAlloc
(
GetProcessHeap
(),
0
,
Size
);
}
/******************************************************************************
* I_RpcFree (rpcrt4.@)
*/
void
WINAPI
I_RpcFree
(
void
*
Object
)
{
HeapFree
(
GetProcessHeap
(),
0
,
Object
);
}
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