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.

25 lines
845 B

  1. #include "private.h"
  2. #include "imedefs.h"
  3. #include "uiwndhd.h"
  4. /**********************************************************************/
  5. /* */
  6. /* UIWndProc() */
  7. /* */
  8. /* IME UI window procedure */
  9. /* */
  10. /**********************************************************************/
  11. LRESULT CALLBACK
  12. UIWndProcA(
  13. HWND hUIWnd,
  14. UINT uMsg,
  15. WPARAM wParam,
  16. LPARAM lParam
  17. )
  18. {
  19. CIMEUIWindowHandler* pimeui = GetImeUIWndHandler(hUIWnd);
  20. return pimeui->ImeUIWndProcWorker(uMsg, wParam, lParam, FALSE);
  21. }