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.

19 lines
530 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: declspec.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // Used to import or export data in nodemgr DLL without the hassle of
  11. // creating a .DEF file with decorated names.
  12. #ifdef _NODEMGRDLL
  13. #define NM_DECLSPEC __declspec(dllexport)
  14. #else
  15. #define NM_DECLSPEC __declspec(dllimport)
  16. #endif