/**************/ /* savepos.h */ #ifndef SAVEPOS_H #define SAVEPOS_H #include "dllmain.h" typedef enum { SAVEPOS_NOSIZE = 0, SAVEPOS_SIZE = 1 } tSaveposSizeEnum; #ifdef __cplusplus extern "C" { #endif int WINAPI_LIB ForceInsideScreen(RECT FAR *rc); void WINAPI_LIB RestorePos(HWND hwnd,LPCSTR inifilename,LPCSTR section,tSaveposSizeEnum size); void WINAPI_LIB SavePos(HWND hwnd,LPCSTR inifilename,LPCSTR section,tSaveposSizeEnum size); #ifdef __cplusplus } #endif #endif /* SAVEPOS_H */