mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 22:18:13 +00:00
[MSRLE32] Sync with Wine Staging 4.0. CORE-15682
This commit is contained in:
parent
606f6cab10
commit
6c5ec3ddff
2 changed files with 5 additions and 5 deletions
|
@ -1183,8 +1183,8 @@ static LRESULT GetInfo(const CodecInfo *pi, ICINFO *icinfo, DWORD dwSize)
|
|||
icinfo->dwVersion = ICVERSION;
|
||||
icinfo->dwVersionICM = ICVERSION;
|
||||
|
||||
LoadStringW(MSRLE32_hModule, IDS_NAME, icinfo->szName, sizeof(icinfo->szName)/sizeof(WCHAR));
|
||||
LoadStringW(MSRLE32_hModule, IDS_DESCRIPTION, icinfo->szDescription, sizeof(icinfo->szDescription)/sizeof(WCHAR));
|
||||
LoadStringW(MSRLE32_hModule, IDS_NAME, icinfo->szName, ARRAY_SIZE(icinfo->szName));
|
||||
LoadStringW(MSRLE32_hModule, IDS_DESCRIPTION, icinfo->szDescription, ARRAY_SIZE(icinfo->szDescription));
|
||||
|
||||
return sizeof(ICINFO);
|
||||
}
|
||||
|
@ -1206,8 +1206,8 @@ static LRESULT About(CodecInfo *pi, HWND hWnd)
|
|||
/* pre-condition */
|
||||
assert(MSRLE32_hModule != 0);
|
||||
|
||||
LoadStringW(MSRLE32_hModule, IDS_NAME, szTitle, sizeof(szTitle)/sizeof(szTitle[0]));
|
||||
LoadStringW(MSRLE32_hModule, IDS_ABOUT, szAbout, sizeof(szAbout)/sizeof(szAbout[0]));
|
||||
LoadStringW(MSRLE32_hModule, IDS_NAME, szTitle, ARRAY_SIZE(szTitle));
|
||||
LoadStringW(MSRLE32_hModule, IDS_ABOUT, szAbout, ARRAY_SIZE(szAbout));
|
||||
|
||||
MessageBoxW(hWnd, szAbout, szTitle, MB_OK|MB_ICONINFORMATION);
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ reactos/dll/win32/msisip # Synced to WineStaging-3.3
|
|||
reactos/dll/win32/msisys.ocx # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/msnet32 # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/mspatcha # Forked at WineStaging-3.3
|
||||
reactos/dll/win32/msrle32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/msrle32 # Synced to WineStaging-4.0
|
||||
reactos/dll/win32/mssign32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/mssip32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/mstask # Synced to WineStaging-3.3
|
||||
|
|
Loading…
Reference in a new issue