Source code of Windows XP (NT5)
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.

31 lines
556 B

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