fspr_arch_pre_nw.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef __pre_nw__
  2. #define __pre_nw__
  3. #include <stdint.h>
  4. #ifndef __GNUC__
  5. #pragma precompile_target "precomp.mch"
  6. #endif
  7. #define NETWARE
  8. #define N_PLAT_NLM
  9. /* Licensed to the Apache Software Foundation (ASF) under one or more
  10. * contributor license agreements. See the NOTICE file distributed with
  11. * this work for additional information regarding copyright ownership.
  12. * The ASF licenses this file to You under the Apache License, Version 2.0
  13. * (the "License"); you may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at
  15. *
  16. * http://www.apache.org/licenses/LICENSE-2.0
  17. *
  18. * Unless required by applicable law or agreed to in writing, software
  19. * distributed under the License is distributed on an "AS IS" BASIS,
  20. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  21. * See the License for the specific language governing permissions and
  22. * limitations under the License.
  23. */
  24. #define FAR
  25. #define far
  26. /* no-op for Codewarrior C compiler; a functions are cdecl
  27. by default */
  28. #define cdecl
  29. /* if we have wchar_t enabled in C++, predefine this type to avoid
  30. a conflict in Novell's header files */
  31. #ifndef __GNUC__
  32. #ifndef DOXYGEN
  33. #if (__option(cplusplus) && __option(wchar_type))
  34. #define _WCHAR_T
  35. #endif
  36. #endif
  37. #endif
  38. /* C9X defintion used by MSL C++ library */
  39. #define DECIMAL_DIG 17
  40. /* some code may want to use the MS convention for long long */
  41. #ifndef __int64
  42. #define __int64 long long
  43. #endif
  44. /* expat version */
  45. #define VERSION "expat_1.95.1"
  46. #define EXPAT_MAJOR_VERSION 1
  47. #define EXPAT_MINOR_VERSION 95
  48. #define EXPAT_EDIT 2
  49. #define XML_MAJOR_VERSION EXPAT_MAJOR_VERSION
  50. #define XML_MINOR_VERSION EXPAT_MINOR_VERSION
  51. #define XML_MICRO_VERSION EXPAT_EDIT
  52. #endif