Skip to content
hexparse edited this page Aug 12, 2011 · 2 revisions

About this wrapper

This is a wrapper to allow you to use AutoHotkey.dll in .NET languages. So far it's only been tested with C#. AutoHotkey was written in C++ so there may be some problems with compatibility. I'd love to hear about them!

What is AutoHotkey?

It's a scripting language for automating windows tasks. There is more information on the AutoHotkey web site.

And it has a dynamic linking library?

It sure does! The dynamic linking library (DLL) is a custom build of AutoHotkey. It actually lives right here... on GitHub!

Great, but what's a dynamic linking library?

It's a compiled library of functions. Your program can access functions from it when it needs them. More information can be found here: (http://en.wikipedia.org/wiki/Dynamic-link_library)