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
2356fbce
Commit
2356fbce
authored
Sep 07, 2001
by
Huw D M Davies
Committed by
Alexandre Julliard
Sep 07, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for UuidHash().
parent
29fdbe9f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-0
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+14
-0
rpcdce.h
include/rpcdce.h
+3
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
2356fbce
...
...
@@ -24,6 +24,7 @@ debug_channels (ole)
@ stdcall RpcStringBindingComposeW(wstr wstr wstr wstr wstr ptr) RpcStringBindingComposeW
@ stdcall RpcStringFreeA(ptr) RpcStringFreeA
@ stdcall UuidCreate(ptr) UuidCreate
@ stdcall UuidHash(ptr ptr) UuidHash
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
@ stub CStdStubBuffer_QueryInterface
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
2356fbce
...
...
@@ -280,6 +280,20 @@ RPC_STATUS WINAPI RpcStringFreeA(unsigned char** String)
return
RPC_S_OK
;
}
/*************************************************************************
* UuidHash [RPCRT4.@]
*
* Generates a hash value for a given UUID
*
*/
unsigned
short
WINAPI
UuidHash
(
UUID
*
uuid
,
RPC_STATUS
*
Status
)
{
FIXME
(
"stub:
\n
"
);
*
Status
=
RPC_S_OK
;
return
0xabcd
;
}
/*************************************************************************
* UuidToStringA [RPCRT4.@]
*
...
...
include/rpcdce.h
View file @
2356fbce
...
...
@@ -107,6 +107,9 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
#define RpcBindingFromStringBinding WINELIB_NAME_AW(RpcBindingFromStringBinding)
RPCRTAPI
unsigned
short
RPC_ENTRY
UuidHash
(
UUID
*
,
RPC_STATUS
*
);
#include "rpcdcep.h"
#endif
/*__WINE_RPCDCE_H */
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