/* Copyright © 1997, Oracle Corporation. All Rights Reserved. */ /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * * KUSRMU_DLL.H * *++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * * Facility: * * Oracle Rdb * * Abstract: * * Macro definitions for DLLIMPORT and DLLEXPORT * * * Author: * * Ted Hochuli * * Modification History: * * Version 8.0 * 20-Feb-97 21977 (TJH) Do not use export/import declarations. * 19-Feb-97 21967 (TJH) Fix compilation problems * 19-FEB-97 21964 (TJH) Initial entry. * *------------------------------------------------------------------------------ */ #ifndef _KUSRMU_DLL_H #define _KUSRMU_DLL_H /*****************************************************************************/ /* Declarations of KUS DLL macros */ /*****************************************************************************/ #if (COSI_K_NT == 1) #ifdef _KUSCALL_H /*#define KUSRMU_INTERFACE DLLIMPORT*/ #define KUSRMU_INTERFACE #else /*#define KUSRMU_INTERFACE DLLEXPORT*/ #define KUSRMU_INTERFACE #endif /* ifdef _KUSCALL_H */ #else #define KUSRMU_INTERFACE #endif /* if (COSI_K_NT == 1) */ /* * DO NOT ADD ANY STATEMENTS BELOW THIS LINE! */ #endif /* ifndef MODULE */