//Copyright (c) 2007-2008 Michael Curran //This file is covered by the GNU General Public Licence #ifndef KEYHOOK_H #define KEYHOOK_H #define DLLEXPORT __declspec(dllexport) //Function type for user defined key callback typedef int (*keyCallback_t)(int vkCode, int scanCode, int extended, int injected); //Functions DLLEXPORT int initialize(keyCallback_t downCallback, keyCallback_t upCallback); DLLEXPORT int terminate(); #endif