mirror of https://github.com/tongzx/nt5src
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.
36 lines
611 B
36 lines
611 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Data.c
|
|
|
|
Abstract:
|
|
|
|
Global data for RpcXlate routines. (Debug only, so no security problems.)
|
|
|
|
Author:
|
|
|
|
John Rogers (JohnRo) 03-Apr-1991
|
|
|
|
Environment:
|
|
|
|
Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
|
|
Requires ANSI C extensions: slash-slash comments, long external names.
|
|
|
|
Revision History:
|
|
|
|
03-Apr-1991 JohnRo
|
|
Created.
|
|
17-Jul-1991 JohnRo
|
|
Extracted RxpDebug.h from Rxp.h.
|
|
|
|
--*/
|
|
|
|
|
|
#include <rxpdebug.h> // DWORD, extern for RxpTrace.
|
|
|
|
DWORD RxpTrace = 0;
|
|
|
|
// That's all, folks!
|