Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: cipt.cxx
//
// Contents: Pipe tracing
//
// History: 21 Nov 1997 DLee Created
//
//--------------------------------------------------------------------------
#include <windows.h>
STDAPI Before( HANDLE hPipe, ULONG cbWrite, void * pvWrite, ULONG & rcbWritten, void *& rpvWritten ) { rcbWritten = cbWrite; rpvWritten = pvWrite;
return S_OK; } //Before
STDAPI After( HANDLE hPipe, ULONG cbWrite, void * pvWrite, ULONG cbWritten, void * pvWritten, ULONG cbRead, void * pvRead ) { return S_OK; } //After
extern "C" { BOOL APIENTRY DllInit(HANDLE hInst, DWORD fdwReason, LPVOID lpReserved) { return TRUE; } //DllInit
}
|