20 #ifndef INCLUDED_SAL_TYPES_H 21 #define INCLUDED_SAL_TYPES_H 34 #if defined ( __MINGW32__ ) && !defined ( __USE_MINGW_ANSI_STDIO ) 40 #define __USE_MINGW_ANSI_STDIO 1 49 # define sal_False ((sal_Bool)0) 50 # define sal_True ((sal_Bool)1) 56 #if SAL_TYPES_SIZEOFSHORT == 2 57 typedef signed short sal_Int16;
58 typedef unsigned short sal_uInt16;
60 #error "Could not find 16-bit type, add support for your architecture" 63 #if SAL_TYPES_SIZEOFLONG == 4 64 typedef signed long sal_Int32;
65 typedef unsigned long sal_uInt32;
66 #define SAL_PRIdINT32 "ld" 67 #define SAL_PRIuUINT32 "lu" 68 #define SAL_PRIxUINT32 "lx" 69 #define SAL_PRIXUINT32 "lX" 70 #elif SAL_TYPES_SIZEOFINT == 4 71 typedef signed int sal_Int32;
72 typedef unsigned int sal_uInt32;
73 #define SAL_PRIdINT32 "d" 74 #define SAL_PRIuUINT32 "u" 75 #define SAL_PRIxUINT32 "x" 76 #define SAL_PRIXUINT32 "X" 78 #error "Could not find 32-bit type, add support for your architecture" 82 typedef __int64 sal_Int64;
83 typedef unsigned __int64 sal_uInt64;
86 #define SAL_CONST_INT64(x) x##i64 87 #define SAL_CONST_UINT64(x) x##ui64 89 #define SAL_PRIdINT64 "I64d" 90 #define SAL_PRIuUINT64 "I64u" 91 #define SAL_PRIxUINT64 "I64x" 92 #define SAL_PRIXUINT64 "I64X" 93 #elif defined (__GNUC__) 94 #if SAL_TYPES_SIZEOFLONG == 8 95 typedef signed long int sal_Int64;
96 typedef unsigned long int sal_uInt64;
100 #define SAL_CONST_INT64(x) x##l 101 #define SAL_CONST_UINT64(x) x##ul 103 #define SAL_PRIdINT64 "ld" 104 #define SAL_PRIuUINT64 "lu" 105 #define SAL_PRIxUINT64 "lx" 106 #define SAL_PRIXUINT64 "lX" 107 #elif SAL_TYPES_SIZEOFLONGLONG == 8 108 typedef signed long long sal_Int64;
109 typedef unsigned long long sal_uInt64;
112 #define SAL_CONST_INT64(x) x##ll 113 #define SAL_CONST_UINT64(x) x##ull 115 #define SAL_PRIdINT64 "lld" 116 #define SAL_PRIuUINT64 "llu" 117 #define SAL_PRIxUINT64 "llx" 118 #define SAL_PRIXUINT64 "llX" 120 #error "Could not find 64-bit type, add support for your architecture" 123 #error "Please define the 64-bit types for your architecture/compiler in sal/inc/sal/types.h" 144 #if ( defined(SAL_W32) && !defined(__MINGW32__) ) 151 #define SAL_UNICODE_NOTEQUAL_WCHAR_T 152 #if LIBO_INTERNAL_ONLY && defined __cplusplus 162 #if SAL_TYPES_SIZEOFPOINTER == 4 163 typedef sal_uInt32 sal_Size;
164 typedef sal_Int32 sal_sSize;
165 #elif SAL_TYPES_SIZEOFPOINTER == 8 166 typedef sal_uInt64 sal_Size;
167 typedef sal_Int64 sal_sSize;
169 #error "Please make sure SAL_TYPES_SIZEOFPOINTER is defined for your architecture/compiler" 173 #if SAL_TYPES_SIZEOFPOINTER == 4 174 typedef sal_Int32 sal_PtrDiff;
175 #elif SAL_TYPES_SIZEOFPOINTER == 8 176 typedef sal_Int64 sal_PtrDiff;
178 #error "Please make sure SAL_TYPES_SIZEOFPOINTER is defined for your architecture/compiler" 183 #if defined(_MSC_VER) 184 #define SAL_PRI_SIZET "I" 185 #define SAL_PRI_PTRDIFFT "I" 187 #define SAL_PRI_SIZET "z" 188 #define SAL_PRI_PTRDIFFT "t" 194 #if SAL_TYPES_SIZEOFPOINTER == 4 195 typedef sal_Int32 sal_IntPtr;
196 typedef sal_uInt32 sal_uIntPtr;
197 #define SAL_PRIdINTPTR SAL_PRIdINT32 198 #define SAL_PRIuUINTPTR SAL_PRIuUINT32 199 #define SAL_PRIxUINTPTR SAL_PRIxUINT32 200 #define SAL_PRIXUINTPTR SAL_PRIXUINT32 201 #elif SAL_TYPES_SIZEOFPOINTER == 8 202 typedef sal_Int64 sal_IntPtr;
203 typedef sal_uInt64 sal_uIntPtr;
204 #define SAL_PRIdINTPTR SAL_PRIdINT64 205 #define SAL_PRIuUINTPTR SAL_PRIuUINT64 206 #define SAL_PRIxUINTPTR SAL_PRIxUINT64 207 #define SAL_PRIXUINTPTR SAL_PRIXUINT64 209 #error "Please make sure SAL_TYPES_SIZEOFPOINTER is defined for your architecture/compiler" 221 #define SAL_MIN_INT8 ((sal_Int8) (-0x7F - 1)) 222 #define SAL_MAX_INT8 ((sal_Int8) 0x7F) 223 #define SAL_MAX_UINT8 ((sal_uInt8) 0xFF) 224 #define SAL_MIN_INT16 ((sal_Int16) (-0x7FFF - 1)) 225 #define SAL_MAX_INT16 ((sal_Int16) 0x7FFF) 226 #define SAL_MAX_UINT16 ((sal_uInt16) 0xFFFF) 227 #define SAL_MIN_INT32 ((sal_Int32) (-0x7FFFFFFF - 1)) 228 #define SAL_MAX_INT32 ((sal_Int32) 0x7FFFFFFF) 229 #define SAL_MAX_UINT32 ((sal_uInt32) 0xFFFFFFFF) 230 #define SAL_MIN_INT64 ((sal_Int64) (SAL_CONST_INT64(-0x7FFFFFFFFFFFFFFF) - 1)) 231 #define SAL_MAX_INT64 ((sal_Int64) SAL_CONST_INT64(0x7FFFFFFFFFFFFFFF)) 232 #define SAL_MAX_UINT64 ((sal_uInt64) SAL_CONST_UINT64(0xFFFFFFFFFFFFFFFF)) 234 #if SAL_TYPES_SIZEOFPOINTER == 4 235 #define SAL_MAX_SSIZE SAL_MAX_INT32 236 #define SAL_MAX_SIZE SAL_MAX_UINT32 237 #elif SAL_TYPES_SIZEOFPOINTER == 8 238 #define SAL_MAX_SSIZE SAL_MAX_INT64 239 #define SAL_MAX_SIZE SAL_MAX_UINT64 242 #define SAL_MAX_ENUM 0x7fffffff 244 #if defined(_MSC_VER) || defined(__MINGW32__) 245 # define SAL_DLLPUBLIC_EXPORT __declspec(dllexport) 246 # define SAL_JNI_EXPORT __declspec(dllexport) 247 #if defined(_MSC_VER) 248 # define SAL_DLLPUBLIC_IMPORT __declspec(dllimport) 250 # define SAL_DLLPUBLIC_IMPORT 251 #endif // defined(_MSC_VER) 252 # define SAL_DLLPRIVATE 253 # define SAL_DLLPUBLIC_TEMPLATE 254 # define SAL_DLLPUBLIC_RTTI 255 # define SAL_CALL __cdecl 256 # define SAL_CALL_ELLIPSE __cdecl 257 #elif defined SAL_UNX 258 # if defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE) 259 # if defined(DISABLE_DYNLOADING) 260 # define SAL_DLLPUBLIC_EXPORT __attribute__ ((visibility("hidden"))) 261 # define SAL_JNI_EXPORT __attribute__ ((visibility("default"))) 262 # define SAL_DLLPUBLIC_IMPORT __attribute__ ((visibility("hidden"))) 263 # define SAL_DLLPRIVATE __attribute__ ((visibility("hidden"))) 264 # define SAL_DLLPUBLIC_TEMPLATE __attribute__ ((visibility("hidden"))) 265 # define SAL_DLLPUBLIC_RTTI 267 # define SAL_DLLPUBLIC_EXPORT __attribute__ ((visibility("default"))) 268 # define SAL_JNI_EXPORT __attribute__ ((visibility("default"))) 269 # define SAL_DLLPUBLIC_IMPORT __attribute__ ((visibility("default"))) 270 # define SAL_DLLPRIVATE __attribute__ ((visibility("hidden"))) 271 # define SAL_DLLPUBLIC_TEMPLATE __attribute__ ((visibility("default"))) 272 # if defined __clang__ 273 # if __has_attribute(type_visibility) 274 # define SAL_DLLPUBLIC_RTTI __attribute__ ((type_visibility("default"))) 276 # define SAL_DLLPUBLIC_RTTI __attribute__ ((visibility("default"))) 279 # define SAL_DLLPUBLIC_RTTI 283 # define SAL_DLLPUBLIC_EXPORT 284 # define SAL_JNI_EXPORT 285 # define SAL_DLLPUBLIC_IMPORT 286 # define SAL_DLLPRIVATE 287 # define SAL_DLLPUBLIC_TEMPLATE 288 # define SAL_DLLPUBLIC_RTTI 291 # define SAL_CALL_ELLIPSE 293 # error("unknown platform") 302 #if defined(__GNUC__) && ! defined(__MINGW32__) 303 # if defined(DISABLE_DYNLOADING) 304 # define SAL_EXCEPTION_DLLPUBLIC_EXPORT __attribute__((visibility("default"))) 306 # define SAL_EXCEPTION_DLLPUBLIC_EXPORT SAL_DLLPUBLIC_EXPORT 308 # define SAL_EXCEPTION_DLLPRIVATE SAL_DLLPRIVATE 310 # define SAL_EXCEPTION_DLLPUBLIC_EXPORT 311 # define SAL_EXCEPTION_DLLPRIVATE 320 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)) 321 # define SAL_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) 323 # define SAL_WARN_UNUSED_RESULT 331 # define SAL_NO_VTABLE __declspec(novtable) 333 # define SAL_NO_VTABLE 337 # pragma pack(push, 8) 356 #define SAL_SEQUENCE_HEADER_SIZE ((sal_Size) offsetof(sal_Sequence,elements)) 358 #if defined( SAL_W32) 362 #if defined __cplusplus 368 #define SAL_THROW_EXTERN_C() throw () 372 #define SAL_THROW_EXTERN_C() 389 namespace com {
namespace sun {
namespace star { } } }
395 namespace css = ::com::sun::star;
405 #if defined LIBO_INTERNAL_ONLY 406 #define SAL_DELETED_FUNCTION = delete 408 #define SAL_DELETED_FUNCTION 418 #if defined LIBO_INTERNAL_ONLY 419 #define SAL_OVERRIDE override 430 #if defined LIBO_INTERNAL_ONLY 431 #define SAL_FINAL final 440 #if HAVE_CXX11_CONSTEXPR 441 #define SAL_CONSTEXPR constexpr 443 #define SAL_CONSTEXPR 464 return static_cast< T1
>(n);
483 #define SAL_INT_CAST(type, expr) ((type) (expr)) 492 #if HAVE_GCC_DEPRECATED_MESSAGE 493 # define SAL_DEPRECATED(message) __attribute__((deprecated(message))) 495 # define SAL_DEPRECATED(message) __attribute__((deprecated)) 496 #elif defined(_MSC_VER) 497 # define SAL_DEPRECATED(message) __declspec(deprecated(message)) 499 # define SAL_DEPRECATED(message) 511 #ifdef LIBO_INTERNAL_ONLY 512 # define SAL_DEPRECATED_INTERNAL(message) 514 # define SAL_DEPRECATED_INTERNAL(message) SAL_DEPRECATED(message) 524 #if HAVE_GCC_PRAGMA_OPERATOR 525 #define SAL_WNODEPRECATED_DECLARATIONS_PUSH \ 526 _Pragma(SAL_STRINGIFY_ARG(GCC diagnostic push)) \ 527 _Pragma(SAL_STRINGIFY_ARG(GCC diagnostic ignored "-Wdeprecated-declarations")) 528 #define SAL_WNODEPRECATED_DECLARATIONS_POP \ 529 _Pragma(SAL_STRINGIFY_ARG(GCC diagnostic pop)) 531 # define SAL_WNODEPRECATED_DECLARATIONS_PUSH 532 # define SAL_WNODEPRECATED_DECLARATIONS_POP 552 #define SAL_WNOUNREACHABLE_CODE_PUSH \ 553 __pragma(warning(push)) \ 554 __pragma(warning(disable:4702)) \ 555 __pragma(warning(disable:4722)) 556 #define SAL_WNOUNREACHABLE_CODE_POP \ 557 __pragma(warning(pop)) 560 #define SAL_WNOUNREACHABLE_CODE_PUSH 561 #define SAL_WNOUNREACHABLE_CODE_POP 587 #if defined __cplusplus 589 #define SAL_UNUSED_PARAMETER __attribute__ ((unused)) 591 #define SAL_UNUSED_PARAMETER 607 #if HAVE_GCC_ATTRIBUTE_WARN_UNUSED 608 #define SAL_WARN_UNUSED __attribute__((warn_unused)) 609 #elif defined __clang__ 610 #define SAL_WARN_UNUSED __attribute__((annotate("lo_warn_unused"))) 612 #define SAL_WARN_UNUSED 615 #endif // INCLUDED_SAL_TYPES_H void * sal_Handle
Definition: types.h:159
char sal_Char
A legacy synonym for char.
Definition: types.h:130
unsigned char sal_uChar
A legacy synonym for unsigned char.
Definition: types.h:142
char elements[1]
elements array
Definition: types.h:353
unsigned char sal_Bool
Definition: types.h:48
unsigned char sal_uInt8
Definition: types.h:54
__sal_NoAcquire
Definition: types.h:382
signed char sal_Int8
Definition: types.h:53
sal_uInt16 sal_Unicode
Definition: types.h:155
struct _sal_Sequence sal_Sequence
This is the binary specification of a SAL sequence.
This is the binary specification of a SAL sequence.
Definition: types.h:343
sal_Int32 nRefCount
reference count of sequence
Definition: types.h:347
definition of a no acquire enum for ctors
Definition: types.h:386
sal_Int32 nElements
element count
Definition: types.h:350
signed char sal_sChar
A legacy synonym for signed char.
Definition: types.h:136
T1 static_int_cast(T2 n)
A static_cast between integral types, to avoid C++ compiler warnings.
Definition: types.h:463