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
1.1 KiB

  1. /****************************************************************************
  2. CONFIG.H
  3. Owner: cslim
  4. Copyright (c) 1997-1999 Microsoft Corporation
  5. IME Configuration DLG and registry access functions
  6. History:
  7. 14-JUL-1999 cslim Copied from IME98 source tree
  8. *****************************************************************************/
  9. #if !defined (_CONFIG_H__INCLUDED_)
  10. #define _CONFIG_H__INCLUDED_
  11. //////////////////////////////////////////////////////////////////////////////
  12. // Bit const for SetRegValues
  13. #define GETSET_REG_STATUSPOS 0x0001
  14. #define GETSET_REG_IMEKL 0x0002
  15. #define GETSET_REG_JASODEL 0x0004
  16. #define GETSET_REG_ISO10646 0x0008
  17. #define GETSET_REG_STATUS_BUTTONS 0x0010
  18. #define GETSET_REG_KSC5657 0x0020
  19. #define GETSET_REG_CANDUNICODETT 0x0040
  20. #define GETSET_REG_ALL 0xFFFF
  21. extern BOOL ConfigDLG(HWND hWnd);
  22. extern BOOL GetRegValues(UINT uGetBits); // get configuration info from reg. and set it to pImeData
  23. extern BOOL GetStatusWinPosReg(POINT *pptStatusWinPosReg);
  24. extern BOOL SetRegValues(UINT uSetBits); // set configuration info to reg.
  25. #endif //!defined (_CONFIG_H__INCLUDED_)