12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*##############################################################################
- HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- ############################################################################## */
- #ifndef eclinclude4_incl
- #define eclinclude4_incl
- // Gather all the includes used by generated code into a single file so that we can
- // take advantage of precompiled headers more easily
- #ifdef _WIN32
- #define ECL_API __declspec(dllexport)
- #define LOCAL_API
- #define SERVICE_API __declspec(dllimport)
- #define RTL_API __declspec(dllimport)
- #define BCD_API __declspec(dllimport)
- #else
- #ifdef USE_VISIBILITY
- #define ECL_API __attribute__ ((visibility("default")))
- #define LOCAL_API __attribute__ ((visibility("hidden")))
- #else
- #define ECL_API
- #define LOCAL_API
- #endif
- #define SERVICE_API
- #define RTL_API
- #define BCD_API
- #endif
- #include <string.h>
- #include <malloc.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <math.h>
- #define CHEAP_UCHAR_DEF
- #if __WIN32
- typedef wchar_t UChar;
- #else //__WIN32
- typedef unsigned short UChar;
- #endif //__WIN32
- #ifdef _WIN32
- typedef unsigned int size32_t; // avoid pulling in platform.h (which pulls in windows.h etc) just for this...
- typedef unsigned __int64 hash64_t;
- #else
- #include "platform.h"
- #endif
- #include "eclrtl.hpp"
- #include "eclhelper.hpp"
- #include "rtlkey.hpp"
- #include "eclrtl_imp.hpp"
- #include "rtlfield_imp.hpp"
- #include "rtlds_imp.hpp"
- #include "eclhelper_base.hpp"
- #include "rtlbcd.hpp"
- #endif
|