XLKit  0.1.0
 All Classes Files Functions Typedefs Macros Groups
xlcall.hpp
Go to the documentation of this file.
1 
9 // Copyright (c) 2014 Edward Lam
10 //
11 // All rights reserved. This software is distributed under the
12 // Mozilla Public License, v. 2.0 ( http://www.mozilla.org/MPL/2.0/ ).
13 //
14 // Redistributions of source code must retain the above copyright
15 // and license notice and the following restrictions and disclaimer.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
22 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 
29 #ifndef XLKIT_XLCALL_HPP
30 #define XLKIT_XLCALL_HPP
31 
32 #include <xlkit/xlversion.hpp>
33 #include <stdint.h>
34 
35 namespace xlkit {
37 namespace XLKIT_VERSION_NAME {
38 namespace detail {
39 
40 struct xlPOINT {
41  int32_t x;
42  int32_t y;
43 };
44 
45 } // namespace detail
46 } // namespace XLKIT_VERSION_NAME
47 } // namespace xlkit
48 
49 // If WINDOWS.H has not been included, then define the types needed by XLCALL.H
50 #if !defined(_WINDOWS_H_) && !defined(_INC_WINDOWS)
51 #define XLCALL_HPP_WINDEFS
52 #define WINAPI __stdcall
53 #define CALLBACK __stdcall
54 #define pascal __stdcall
55 #define VOID void
56 #define INT32 int32_t
57 #define WCHAR wchar_t
58 #define BYTE uint8_t
59 #define WORD uint16_t
60 #define SHORT int16_t
61 #define DWORD uint32_t
62 #define DWORD_PTR uint32_t*
63 #define LONG int32_t
64 #define LPSTR char*
65 #define LPCSTR const char*
66 #define HANDLE void*
67 #define HWND void*
68 #define POINT xlkit::detail::xlPOINT
69 #endif
70 
71 #include <XLCALL.H>
72 
73 // Undo defines that were used just to get XLCALL.H included properly
74 #ifdef XLCALL_HPP_WINDEFS
75 #undef XLCALL_HPP_WINDEFS
76 #undef WINAPI
77 #undef CALLBACK
78 #undef pascal
79 #undef VOID
80 #undef INT32
81 #undef WCHAR
82 #undef BYTE
83 #undef WORD
84 #undef SHORT
85 #undef DWORD
86 #undef DWORD_PTR
87 #undef LONG
88 #undef LPSTR
89 #undef LPCSTR
90 #undef HANDLE
91 #undef HWND
92 #undef POINT
93 #endif
94 
95 #endif // XLKIT_XLCALL_HPP
#define XLKIT_VERSION_NAME
Version namespace for this library.
Definition: xlversion.hpp:33
#define XLKIT_USE_VERSION_NAMESPACE
Macro used to pull the versioned namespace into the main xlkit namepsace.
Definition: xlversion.hpp:52
XLKit version defines.