18 lines
445 B
C#
Executable File
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();
|
|
}
|
|
}
|