jasonpang / Interceptor

C# wrapper for a Windows keyboard driver. Can simulate keystrokes and mouse clicks in protected areas like the Windows logon screen (and yes, even in games). Wrapping http://oblita.com/Interception
MIT License
286 stars 84 forks source link

How to reference Input class? #14

Open joaoalbertocsjunior opened 5 years ago

joaoalbertocsjunior commented 5 years ago

Im a new developer in cpp, and im trying to use this project. How do i reference Input class from another project? There is no .h file!

VollRahm commented 5 years ago

This is a C# Project, so you would do that with using Interceptor; in C#

petrecheli commented 3 years ago

This is a C# Project, so you would do that with using Interceptor; in C#

Im trying to use this... but it needs a reference, when I try to reference by visual studio it says that the dll isnt a COM dll

keytrap-x86 commented 3 years ago

The purpose of this project is to be a C# wrapper arround the original C++ Oblita Project. If you dev in C++ just us Oblita. If you dev in C#. Clone this repo, build this project, it will generate a file called Input.dll. Add this Input.dll to your actual project.