/**************/ /* savepos.h */ #ifndef SAVEPOS_H #define SAVEPOS_H #ifdef __DLL__ #define CALLBACK_DLL CALLBACK _export #else #define CALLBACK_DLL CALLBACK #endif #ifdef __cplusplus extern "C" { #endif void CALLBACK_DLL RestorePos(HWND hwnd,LPCSTR inifilename,LPCSTR section); void CALLBACK_DLL SavePos(HWND hwnd,LPCSTR inifilename,LPCSTR section); #ifdef __cplusplus } #endif #endif /* SAVEPOS_H */