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

This commit is contained in:
Rob Shearman 2008-01-13 20:53:46 +00:00 committed by Alexandre Julliard
parent 4402daa00b
commit 516008ff5f
1 changed files with 6 additions and 0 deletions
dlls/rpcrt4

View File

@ -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);