Libmacro  0.2
Libmacro is an extensible macro and hotkey library.
private.h
Go to the documentation of this file.
1 /* Libmacro - A multi-platform, extendable macro and hotkey C library
2  Copyright (C) 2013 Jonathan Pelletier, New Paradigm Software
3  This library is free software; you can redistribute it and/or
4  modify it under the terms of the GNU Lesser General Public
5  License as published by the Free Software Foundation; either
6  version 2.1 of the License, or (at your option) any later version.
7  This library is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  Lesser General Public License for more details.
11  You should have received a copy of the GNU Lesser General Public
12  License along with this library; if not, write to the Free Software
13  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
14 */
15 
24 #ifndef MCR_PRIVATE_H_
25 #define MCR_PRIVATE_H_
26 
27 #include "mcr/globals.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 struct mcr_context;
34 
35 extern MCR_API int mcr_base_initialize(struct mcr_context *ctx);
36 extern MCR_API int mcr_base_deinitialize(struct mcr_context *ctx);
37 extern MCR_API void mcr_base_trim(struct mcr_context *ctx);
38 
39 extern MCR_API int mcr_standard_initialize(struct mcr_context *ctx);
40 extern MCR_API int mcr_standard_deinitialize(struct mcr_context *ctx);
41 
42 extern MCR_API int mcr_intercept_initialize(struct mcr_context *ctx);
43 extern MCR_API int mcr_intercept_deinitialize(struct mcr_context *ctx);
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif