mirror of
https://github.com/reactos/reactos.git
synced 2025-06-22 22:30:19 +00:00

This PR reorganizes the location of the CTF-related modules to improve grep-ability, understanding, and readability. New folder base/ctf will become incomplete Cicero, CTF or TSF (Text Services Framework). JIRA issue: CORE-19360 JIRA issue: CORE-19361 JIRA issue: CORE-19363 - Move ctfmon, msctf, msctfime, and msutb modules to new directory base/ctf. - Adapt CMakeLists.txt to this move. - Modify .github/labeler.yml and media/doc/WINESYNC.txt. - No code content changes except CMakeLists.txt, .github/labeler.yml, and media/doc/WINESYNC.txt.
27 lines
434 B
C
27 lines
434 B
C
|
|
#ifndef _MSCTF_PRECOMP_H
|
|
#define _MSCTF_PRECOMP_H
|
|
|
|
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#define COBJMACROS
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <objbase.h>
|
|
#include <olectl.h>
|
|
#include <msctf.h>
|
|
#include <shlwapi.h>
|
|
|
|
#include <wine/list.h>
|
|
#include <wine/debug.h>
|
|
|
|
#include "msctf_internal.h"
|
|
|
|
#endif /* !_MSCTF_PRECOMP_H */
|