Windows NT 4.0 source code leak
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.

42 lines
637 B

4 years ago
  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. nsi.h
  5. Abstract:
  6. This module contains utility functions used by the NSI client wrappers.
  7. Author:
  8. Steven Zeck (stevez) 03/27/92
  9. --*/
  10. #define RPC_REG_ROOT HKEY_LOCAL_MACHINE
  11. #define REG_NSI "Software\\Microsoft\\Rpc\\NameService"
  12. #if defined(NTENV) && !defined(NSI_ASCII)
  13. #define UNICODE
  14. typedef unsigned short RT_CHAR;
  15. #define CONST_CHAR const char
  16. #else
  17. typedef unsigned char RT_CHAR;
  18. #define CONST_CHAR char
  19. #endif
  20. #include <rpc.h>
  21. #include <rpcnsi.h>
  22. extern "C" {
  23. #include <nsisvr.h>
  24. #include <nsiclt.h>
  25. #include <nsimgm.h>
  26. #include <nsiutil.hxx>
  27. }