Leaked source code of windows server 2003
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.

39 lines
717 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. Data.c
  5. Abstract:
  6. Global data for Rap routines. (Debug only, so no security problems.)
  7. Author:
  8. John Rogers (JohnRo) 29-Apr-1991
  9. Environment:
  10. Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
  11. Requires ANSI C extensions: slash-slash comments, long external names.
  12. Revision History:
  13. 29-Apr-1991 JohnRo
  14. Created.
  15. --*/
  16. // These must be included first:
  17. #include <windef.h> // DWORD, etc.
  18. // These may be included in any order:
  19. #include <rapdebug.h> // extern for RappTrace.
  20. #if DBG
  21. DWORD RappTrace = 0;
  22. #endif // DBG
  23. // That's all, folks!