You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.8 KiB
34 lines
1.8 KiB
#ifndef _LOCRESMAN_H_INCLUDED_
|
|
#define _LOCRESMAN_H_INCLUDED_
|
|
|
|
#include <windows.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif // __cplusplus
|
|
// ************************************************************
|
|
|
|
HRESULT WINAPI HrLoadLocalizedLibrarySFU (const HINSTANCE hInstExe, const WCHAR *pwchDllName, HINSTANCE *phInstLocDll, WCHAR *pwchLoadedDllName);
|
|
HRESULT WINAPI HrLoadLocalizedLibrarySFU_A(const HINSTANCE hInstExe, const char *pchDllName, HINSTANCE *phInstLocDll, char *pchLoadedDllName);
|
|
int WINAPI LoadStringCodepage_A(HINSTANCE hInstance, // handle to module containing string resource
|
|
UINT uID, // resource identifier
|
|
char *lpBuffer, // pointer to buffer for resource
|
|
int nBufferMax, // size of buffer
|
|
UINT uCodepage // desired codepage
|
|
);
|
|
HRESULT WINAPI HrConvertStringCodepage(UINT uCodepageSrc, char *pchSrc, int cchSrc,
|
|
UINT uUcodepageTgt, char *pchTgt, int cchTgtMax, int *pcchTgt,
|
|
void *pbScratchBuffer, int iSizeScratchBuffer);
|
|
|
|
HRESULT WINAPI HrConvertStringCodepageEx(UINT uCodepageSrc, char *pchSrc, int cchSrc,
|
|
UINT uUcodepageTgt, char *pchTgt, int cchTgtMax, int *pcchTgt,
|
|
void *pbScratchBuffer, int iSizeScratchBuffer,
|
|
char *pchDefaultChar, BOOL *pfUsedDefaultChar);
|
|
|
|
// ************************************************************
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // _LOCRESMAN_H_INCLUDED_
|