MAK Legion 1.1 API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
legionDataStore/export.h
Go to the documentation of this file.
1  /*********************************************************************************
2 ** Copyright (c) 2020 MAK Technologies, Inc.
3 ** All rights reserved.
4 *********************************************************************************/
5 
6 #pragma once
7 
8 /*
9  warning C4018: '>': signed/unsigned mismatch
10  warning C4201: nonstandard extension used: nameless struct/union
11  warning C4389: '!=': signed/unsigned mismatch
12  warning C4100: 'db': unreferenced formal parameter
13 */
14 
15 #pragma warning (disable: 4201)
16 
17 #if defined(_WIN32)
18  #ifdef legionDataStore_EXPORTS
19  #define LEGION_DLL __declspec ( dllexport )
20  #else
21  #define LEGION_DLL __declspec ( dllimport )
22  #endif
23 #elif defined(__GNUC__)
24  #define LEGION_DLL __attribute__ ((visibility ("default")))
25 #endif

Document ID: Generated on Wed May 26 15:17:05 EDT 2021 from SVN revision 229676
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (www.mak.com)