//Copyright (c) 2008 Michael Curran //This file is covered by the GNU General Public Licence #ifndef MOUSEHOOK_H #define MOUSEHOOK_H #define DLLEXPORT __declspec(dllexport) //Function type for user defined mouse callback typedef int (*mouseCallback_t)(int msg, int x, int y, int injected); //Functions DLLEXPORT int initialize(mouseCallback_t callback); DLLEXPORT int terminate(); #endif