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.
18 lines
406 B
18 lines
406 B
// PassportExport.h:
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(PASSPORTEXPORT_H)
|
|
#define PASSPORTEXPORT_H
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#if !defined(_PassportExport_)
|
|
#define PassportExport __declspec(dllimport)
|
|
#else
|
|
#define PassportExport __declspec(dllexport)
|
|
#endif
|
|
|
|
#endif // !defined(PASSPORTEXPORT_H)
|