/*------------------------------------------------------------------------------* * File Name: test.h * * Purpose: Header for test.c * * Date: 9/18/96 * * Copyright Microcal Software Inc. 1992-1996 * * Modification log * *------------------------------------------------------------------------------*/ #ifndef _TEST_H #define _TEST_H #ifndef _WIN32 #define DLL_EXPORT(x) x __export WINAPI #else #define DLL_EXPORT(x) __declspec(dllexport) x WINAPI #endif //_WIN32 #endif// _TEST_H