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.

25 lines
784 B

  1. // DllSymDefn.h -- DLL SYMbol DEFinitioN helpers
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 2000. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #if !defined(SCU_DLLSYMDEFN_H)
  8. #define SCU_DLLSYMDEFN_H
  9. #if defined(SCU_IN_DLL)
  10. #if defined(SCU_EXPORTING)
  11. #define SCU_DLLAPI __declspec(dllexport)
  12. #define SCU_EXPIMP_TEMPLATE
  13. #else
  14. #define SCU_DLLAPI __declspec(dllimport)
  15. #define SCU_EXPIMP_TEMPLATE extern
  16. #endif // SCU_EXPORTING
  17. #else
  18. #define SCU_DLLAPI
  19. #define SCU_EXPIMP_TEMPLATE
  20. #endif // SCU_IN_DLL
  21. #endif // SCU_DLLSYMDEFN_H