22 lines
240 B
C
22 lines
240 B
C
//
|
|
// imeutil.h
|
|
//
|
|
|
|
#ifndef IMEUTIL_H
|
|
#define IMEUTIL_H
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD HexStrToDWORD(TCHAR *pStr);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // IMEUTIL_H
|