Leaked source code of windows server 2003
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
687 B

  1. #define CP_CHINESE_BIG5 950
  2. #define CP_CHINESE_GB 936
  3. extern HINSTANCE g_hInstance;
  4. BOOL MigrateImeEUDCTables(HKEY);
  5. BOOL MovePerUserIMEData();
  6. BOOL MigrateImeEUDCTables2(HKEY );
  7. BOOL ConcatenatePaths(
  8. LPTSTR Target,
  9. LPCTSTR Path,
  10. UINT TargetBufferSize
  11. );
  12. //#define MYDBG
  13. //#define SETUP
  14. #ifdef MYDBG
  15. #define DebugMsg(_parameter) Print _parameter
  16. #define DBGTITLE TEXT("IMECONV::")
  17. extern void Print(LPCTSTR ,...);
  18. #else
  19. #define DebugMsg(_parameter)
  20. #endif
  21. typedef struct _tagPathPair {
  22. TCHAR szSrcFile[MAX_PATH];
  23. TCHAR szDstFile[MAX_PATH];
  24. } PATHPAIR,*LPPATHPAIR;
  25. extern TCHAR ImeDataDirectory[MAX_PATH];