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.

36 lines
623 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. ufat.hxx
  5. Author:
  6. Rafael Lisitsa (RafaelL) 23-Mar-1995
  7. --*/
  8. #if !defined ( _UFAT_INCLUDED_ )
  9. #define _UFAT_INCLUDED_
  10. // Set up the UFAT_EXPORT macro for exporting from UFAT (if the
  11. // source file is a member of UFAT) or importing from UFAT (if
  12. // the source file is a client of UFAT).
  13. //
  14. #if defined ( _AUTOCHECK_ )
  15. #define UFAT_EXPORT
  16. #elif defined ( _UFAT_MEMBER_ )
  17. #define UFAT_EXPORT __declspec(dllexport)
  18. #else
  19. #define UFAT_EXPORT __declspec(dllimport)
  20. #endif
  21. #endif // _UFAT_INCLUDED_