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.

48 lines
1018 B

  1. /*+-------------------------------------------------------------------------+
  2. | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
  3. +-------------------------------------------------------------------------+*/
  4. #ifndef _HGLOBALS_
  5. #define _HGLOBALS_
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. #include "switches.h"
  10. #include "constant.h"
  11. #include <nt.h>
  12. #include <ntrtl.h>
  13. #include <nturtl.h>
  14. #include <windows.h>
  15. #include <windowsx.h>
  16. #include <stdlib.h>
  17. #include <ctype.h>
  18. #include <winnetwk.h>
  19. #include <lm.h>
  20. #include <commdlg.h>
  21. #include "resource.h"
  22. #include "debug.h"
  23. #include "nwlog.h"
  24. #include "tab.h"
  25. #include "mem.h"
  26. #include "error.h"
  27. #include "strings.h"
  28. #include "utils.h"
  29. extern HINSTANCE hInst;
  30. #define XCHG(x) MAKEWORD( HIBYTE(x), LOBYTE(x) )
  31. #define DXCHG(x) MAKELONG( XCHG(HIWORD(x)), XCHG(LOWORD(x)) )
  32. #define SWAPBYTES(w) ((w) = XCHG(w))
  33. #define SWAPWORDS(d) ((d) = DXCHG(d))
  34. #define HELP_FILE TEXT("NWConv.HLP")
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif