msctfmonitorapi.h 553 B

1234567891011121314151617181920212223242526
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _INC_MSCTFMONITORAPI
  7. #define _INC_MSCTFMONITORAPI
  8. #if (_WIN32_WINNT >= 0x0600)
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. HRESULT CALLBACK UninitLocalMsCtfMonitor(void);
  13. HRESULT CALLBACK InitLocalMsCtfMonitor(
  14. DWORD dwFlags
  15. );
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /*(_WIN32_WINNT >= 0x0600)*/
  20. #endif /* _INC_MSCTFMONITORAPI */