Rob Shearman : rpcrt4: Add traces to the start of TowerConstruct and TowerExplode.

Alexandre Julliard julliard at winehq.org
Mon Jan 14 09:33:17 CST 2008


Module: wine
Branch: master
Commit: 516008ff5fa6ddffa8f9230ac9d7faaa8b71c4f5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=516008ff5fa6ddffa8f9230ac9d7faaa8b71c4f5

Author: Rob Shearman <rob at codeweavers.com>
Date:   Sun Jan 13 20:53:46 2008 +0000

rpcrt4: Add traces to the start of TowerConstruct and TowerExplode.

---

 dlls/rpcrt4/rpc_epmap.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/dlls/rpcrt4/rpc_epmap.c b/dlls/rpcrt4/rpc_epmap.c
index cac3f62..46244ec 100644
--- a/dlls/rpcrt4/rpc_epmap.c
+++ b/dlls/rpcrt4/rpc_epmap.c
@@ -267,6 +267,9 @@ RPC_STATUS WINAPI TowerExplode(
     const twr_uuid_floor_t *object_floor;
     const twr_uuid_floor_t *syntax_floor;
 
+    TRACE("(%p, %p, %p, %p, %p, %p)\n", tower, object, syntax, protseq,
+          endpoint, address);
+
     if (protseq)
         *protseq = NULL;
     if (endpoint)
@@ -336,6 +339,9 @@ RPC_STATUS WINAPI TowerConstruct(
     twr_uuid_floor_t *object_floor;
     twr_uuid_floor_t *syntax_floor;
 
+    TRACE("(%p, %p, %s, %s, %s, %p)\n", object, syntax, debugstr_a(protseq),
+          debugstr_a(endpoint), debugstr_a(address), tower);
+
     *tower = NULL;
 
     status = RpcTransport_GetTopOfTower(NULL, &tower_size, protseq, address, endpoint);




More information about the wine-cvs mailing list