Ignore:
Timestamp:
Jul 13, 2017, 5:17:57 AM (8 years ago)
Author:
stevenhl
Message:

Import modifications from cwmm-0_2_9-work-01_10_2006.zip dated 2006-08-27

Location:
trunk/common_functions/include
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/common_functions/include/img_funcs.h

    r2 r4  
    33
    44HBITMAP ImgLoadImageFile (  PSZ pszFileName );
    5 BOOL ImgGetBmpInfoHeader(PBITMAPINFOHEADER2  bmpih2, PSZ pszFileName /*, char* procName, ULONG ulLength*/);
     5HBITMAP ImgLoadImageFileAndHeader (  PSZ pszFileName, PBITMAPINFOHEADER2 pBMPInfoHeader2);
     6BOOL ImgGetBmpInfoHeader(PSZ pszFileName, PBITMAPINFOHEADER2  bmpih2 /*, char* procName, ULONG ulLength*/);
    67
    78#endif
  • trunk/common_functions/include/ini_funcs.h

    r2 r4  
    66#endif
    77
    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);
     8BOOL PrfSaveWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd);
     9BOOL PrfRestoreWindowPos(HINI hini, char * iniFile, char* chrApp, char *chrKey, HWND hwnd, ULONG fSize);
     10BOOL PrfWriteString(HINI hini, char * iniFile, char* chrApp, char *chrKey, char* chrString);
     11BOOL PrfQueryString(HINI hini, char * iniFile, char* chrApp, char *chrKey, char* chrDefault, char* chrBuffer, ULONG ulSize);
    1012
    1113#if __cplusplus
  • trunk/common_functions/include/message_funcs.h

    r2 r4  
    99                  char* title, ULONG ulTitleID, LONG lSizeTitle,
    1010                  HMODULE hResource, HWND hwnd, ULONG ulFlags);
    11 ULONG showMessageBox2(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag);
     11ULONG MsgShowMessageBox(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag);
    1212BOOL getMessage(char* text,ULONG ulID, LONG lSizeText, HMODULE hResource,HWND hwnd);
    1313BOOL MsgGetMessage(char* text,ULONG ulID, LONG lSizeText, HMODULE hResource,HWND hwnd);
     14
     15#if 0
     16ULONG showMessageBox2(HWND hwnd, ULONG ulIDTitle, ULONG ulIDText, HMODULE hModule, ULONG ulFlag);
     17#endif
     18
    1419#ifdef __CPLUSPLUS__
    1520}
  • trunk/common_functions/include/sys_funcs.h

    r2 r4  
    2828ULONG SysQueryDriveType(ULONG ulDriveNum);
    2929ULONG SysQueryFreeDriveSpace(ULONG ulDriveNum, ULONG *ulTotal, ULONG * ulFree, ULONG* ulBytesUnit);
    30 ULONG SysQueryDiskName(ULONG ulDriveNum, ULONG ulSize, char *chrBuffer);
     30ULONG SysQueryDiskName(ULONG ulDriveNum, char *chrBuffer, ULONG ulSize);
    3131BOOL SysQueryHomeDir(char* chrBuf, ULONG ulSize);
    3232
Note: See TracChangeset for help on using the changeset viewer.