mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-14 12:49:25 +00:00
Scratching an itch. It's very painful to debug Keyman Core on Windows. This helps a little. It allows you to step through the code without loading keyman32.dll into every process. It's not perfect, because when actions are sent, they tend to land in the debugger because SendInput does not care about the active window! However, if you don't care about that too much (or if you are willing to try a remote debug setup), then this should really simplify debugging.
15 lines
380 B
C
15 lines
380 B
C
// header.h : include file for standard system include files,
|
|
// or project specific include files
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
// Windows Header Files
|
|
#include <windows.h>
|
|
// C RunTime Header Files
|
|
#include <stdlib.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|