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.

37 lines
665 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. Data.c
  5. Abstract:
  6. Global data for NetLib routines. (Debug only, so no security problems.)
  7. Author:
  8. John Rogers (JohnRo) 03-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. 03-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 <debuglib.h> // extern for NetlibpTrace.
  20. DWORD NetlibpTrace = 0;
  21. // That's all, folks!