mirror of https://github.com/tongzx/nt5src
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
31 lines
556 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ufat.hxx
|
|
|
|
--*/
|
|
|
|
|
|
#if !defined ( _UFAT_INCLUDED_ )
|
|
|
|
#define _UFAT_INCLUDED_
|
|
|
|
|
|
// Set up the UFAT_EXPORT macro for exporting from UFAT (if the
|
|
// source file is a member of UFAT) or importing from UFAT (if
|
|
// the source file is a client of UFAT).
|
|
//
|
|
#if defined ( _AUTOCHECK_ ) || defined( _EFICHECK_ )
|
|
#define UFAT_EXPORT
|
|
#elif defined ( _UFAT_MEMBER_ )
|
|
#define UFAT_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define UFAT_EXPORT __declspec(dllimport)
|
|
#endif
|
|
|
|
|
|
#endif // _UFAT_INCLUDED_
|
|
|