mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-29 19:57:41 +00:00
keyman64.h is now only used by keyman32/keyman64. Shared components have been moved to legacy_kmx_memory.h - KMX structures in-memory, as used by kmanalyze, kmdecomp. Removed unnecessary references to keyman64.h from kmtip. Also removed aiDebugger.* which are obsolete files. One day in the future, we could merge keyman64.h with keymanengine.h.
24 lines
519 B
C
24 lines
519 B
C
#pragma once
|
|
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0600
|
|
#endif
|
|
|
|
#ifndef STRICT
|
|
#define STRICT
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
#include <assert.h>
|
|
|
|
#include "../../../../common/windows/cpp/include/legacy_kmx_file.h"
|
|
#include "../../../../common/windows/cpp/include/xstring.h"
|
|
|
|
#include "../../../../common/windows/cpp/include/registry.h"
|
|
#include "../../../../common/windows/cpp/include/unicode.h"
|
|
#include "../../../../common/windows/cpp/include/crc32.h"
|
|
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|