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.

46 lines
731 B

  1. #ifndef IMMIF_IMEDEFS_H
  2. #define IMMIF_IMEDEFS_H
  3. // debug flag
  4. #define DEB_FATAL 0
  5. #define DEB_ERR 1
  6. #define DEB_WARNING 2
  7. #define DEB_TRACE 3
  8. #ifdef _WIN32
  9. void FAR cdecl _DebugOut(UINT, LPCSTR, ...);
  10. #endif
  11. #define NATIVE_CHARSET ANSI_CHARSET
  12. // state of composition
  13. #define CST_INIT 0
  14. #define CST_INPUT 1
  15. // IME specific constants
  16. void PASCAL CreateCompWindow(HWND); // compui.c
  17. LRESULT CALLBACK UIWndProcA(HWND, UINT, WPARAM, LPARAM); // ui.c
  18. LRESULT CALLBACK CompWndProc(HWND, UINT, WPARAM, LPARAM); // compui.c
  19. #endif