Changeset 4 for trunk/common_functions/include
- Timestamp:
- Jul 13, 2017, 5:17:57 AM (8 years ago)
- Location:
- trunk/common_functions/include
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/common_functions/include/img_funcs.h
r2 r4 3 3 4 4 HBITMAP ImgLoadImageFile ( PSZ pszFileName ); 5 BOOL ImgGetBmpInfoHeader(PBITMAPINFOHEADER2 bmpih2, PSZ pszFileName /*, char* procName, ULONG ulLength*/); 5 HBITMAP ImgLoadImageFileAndHeader ( PSZ pszFileName, PBITMAPINFOHEADER2 pBMPInfoHeader2); 6 BOOL ImgGetBmpInfoHeader(PSZ pszFileName, PBITMAPINFOHEADER2 bmpih2 /*, char* procName, ULONG ulLength*/); 6 7 7 8 #endif -
trunk/common_functions/include/ini_funcs.h
r2 r4 6 6 #endif 7 7 8 BOOL IniSaveWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd); 9 BOOL IniRestoreWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd, ULONG fSize); 8 BOOL PrfSaveWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd); 9 BOOL PrfRestoreWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd, ULONG fSize); 10 BOOL PrfWriteString(HINI hini, char * iniFile, char* chrApp, char *chrKey, char* chrString); 11 BOOL PrfQueryString(HINI hini, char * iniFile, char* chrApp, char *chrKey, char* chrDefault, char* chrBuffer, ULONG ulSize); 10 12 11 13 #if __cplusplus -
trunk/common_functions/include/message_funcs.h
r2 r4 9 9 char* title, ULONG ulTitleID, LONG lSizeTitle, 10 10 HMODULE hResource, HWND hwnd, ULONG ulFlags); 11 ULONG showMessageBox2(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag);11 ULONG MsgShowMessageBox(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag); 12 12 BOOL getMessage(char* text,ULONG ulID, LONG lSizeText, HMODULE hResource,HWND hwnd); 13 13 BOOL MsgGetMessage(char* text,ULONG ulID, LONG lSizeText, HMODULE hResource,HWND hwnd); 14 15 #if 0 16 ULONG showMessageBox2(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag); 17 #endif 18 14 19 #ifdef __CPLUSPLUS__ 15 20 } -
trunk/common_functions/include/sys_funcs.h
r2 r4 28 28 ULONG SysQueryDriveType(ULONG ulDriveNum); 29 29 ULONG SysQueryFreeDriveSpace(ULONG ulDriveNum, ULONG *ulTotal, ULONG * ulFree, ULONG* ulBytesUnit); 30 ULONG SysQueryDiskName(ULONG ulDriveNum, ULONG ulSize, char *chrBuffer);30 ULONG SysQueryDiskName(ULONG ulDriveNum, char *chrBuffer, ULONG ulSize); 31 31 BOOL SysQueryHomeDir(char* chrBuf, ULONG ulSize); 32 32
Note:
See TracChangeset
for help on using the changeset viewer.