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.

35 lines
668 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. uudf.hxx
  5. Abstract:
  6. This module contains basic declarations and definitions for
  7. the Universal Data Format utilities.
  8. Author:
  9. Centis Biks (cbiks) 05-May-2000
  10. Revision History:
  11. --*/
  12. #pragma once
  13. // Set up the UUDF_EXPORT macro for exporting from UUDF (if the source file is a member of UUDF)
  14. // or importing from UUDF (if the source file is a client of UUDF).
  15. //
  16. #if defined ( _AUTOCHECK_ )
  17. #define UUDF_EXPORT
  18. #elif defined ( _UUDF_MEMBER_ )
  19. #define UUDF_EXPORT __declspec(dllexport)
  20. #else
  21. #define UUDF_EXPORT __declspec(dllimport)
  22. #endif