Stubs from CW, part 3

Duane Clark dclark at akamail.com
Sat Jan 26 22:04:47 CST 2002


Oops, missed this additional partially implemented stub.

Modified files:
	dlls/rpcrt4		: rpcrt4.spec
	dlls/rpcrt4		: rpcrt4_main.c

Log message:
	Codeweavers
	Partially implemented stub.

-------------- next part --------------
Index: dlls/rpcrt4/rpcrt4.spec
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/rpcrt4.spec,v
retrieving revision 1.10
diff -u -r1.10 rpcrt4.spec
--- dlls/rpcrt4/rpcrt4.spec	2002/01/06 19:08:47	1.10
+++ dlls/rpcrt4/rpcrt4.spec	2002/01/27 02:07:44
@@ -36,7 +36,7 @@
 @ stub RpcAsyncInitializeHandle
 @ stub RpcAsyncRegisterInfo
 @ stub RpcBindingCopy
-@ stub RpcBindingFree
+@ stdcall RpcBindingFree(ptr) RpcBindingFree
 @ stdcall RpcBindingFromStringBindingA(str  ptr) RpcBindingFromStringBindingA
 @ stdcall RpcBindingFromStringBindingW(wstr ptr) RpcBindingFromStringBindingW
 @ stub RpcBindingInqAuthClientA
Index: dlls/rpcrt4/rpcrt4_main.c
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/rpcrt4_main.c,v
retrieving revision 1.18
diff -u -r1.18 rpcrt4_main.c
--- dlls/rpcrt4/rpcrt4_main.c	2002/01/06 19:08:47	1.18
+++ dlls/rpcrt4/rpcrt4_main.c	2002/01/27 02:07:44
@@ -504,6 +508,14 @@
 }
 
 /***********************************************************************
+ *		RpcBindingFree (RPCRT4.@)
+ */
+RPC_STATUS WINAPI RpcBindingFree(/*RPC_BINDING_HANDLE* */ void * Binding)
+{
+  FIXME("(%p): stub\n", Binding);
+  return RPC_S_OK;
+}
+/***********************************************************************
  *		RpcBindingFromStringBindingA (RPCRT4.@)
  */
 RPC_STATUS WINAPI RpcBindingFromStringBindingA( LPSTR StringBinding, RPC_BINDING_HANDLE* Binding )


More information about the wine-patches mailing list