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.
42 lines
610 B
42 lines
610 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
LTAPI.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#ifdef LTAPIENTRY
|
|
#undef LTAPIENTRY
|
|
#endif
|
|
|
|
#ifdef IMPLEMENT
|
|
#define LTAPIENTRY __declspec(dllexport)
|
|
|
|
#else // IMPLEMENT
|
|
#define LTAPIENTRY __declspec(dllimport)
|
|
|
|
#endif // IMPLEMENT
|
|
|
|
|
|
#ifndef LTAPI_H
|
|
#define LTAPI_H
|
|
//
|
|
// Allow the use of C++ reference types and const methods, without
|
|
// breaking the 'C' world.
|
|
//
|
|
#ifdef __cplusplus
|
|
#define REFERENCE &
|
|
#define CONST_METHOD const
|
|
#else
|
|
#define REFERENCE *
|
|
#define CONST_METHOD
|
|
#endif
|
|
|
|
#include <MitThrow.h>
|
|
|
|
#endif
|