Files
MacroBoard/DllInject.cs
Allen Wolf 5785b0ac54 Add Project
2024-01-09 20:25:25 -06:00

18 lines
445 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace MacroBoard.Inject
{
#warning Need to get proper unmangled names in the future.
class DllInject
{
[DllImport("KeyboardHook.dll")]
public static extern int InstallHook(IntPtr hwndParent);
[DllImport("KeyboardHook.dll")]
public static extern int UninstallHook();
}
}