Libmacro  0.2
Libmacro is an extensible macro and hotkey library.
platform.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 
20 #ifndef MCR_PLATFORM_H_
21 #define MCR_PLATFORM_H_
22 
23 #include "mcr/globals.h"
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 struct mcr_context;
30 
34 extern MCR_API int mcr_standard_platform_initialize(struct mcr_context *ctx);
38 extern MCR_API int mcr_standard_platform_deinitialize(struct mcr_context *ctx);
39 
43 extern MCR_API int mcr_intercept_platform_initialize(struct mcr_context *ctx);
47 extern MCR_API int mcr_intercept_platform_deinitialize(struct mcr_context *ctx);
48 
49 #ifdef __cplusplus
50 }
51 #endif
52 
53 #endif
MCR_API int mcr_intercept_platform_initialize(struct mcr_context *ctx)
MCR_API int mcr_standard_platform_initialize(struct mcr_context *ctx)
MCR_API int mcr_intercept_platform_deinitialize(struct mcr_context *ctx)
MCR_API int mcr_standard_platform_deinitialize(struct mcr_context *ctx)