xtd 0.2.0
Loading...
Searching...
No Matches
slong.h
Go to the documentation of this file.
1
4#pragma once
6#define __XTD_VALUE_TYPE_NATIVE__
7#include <xtd/native/value_types>
8#undef __XTD_VALUE_TYPE_NATIVE__
10
12namespace xtd {
14
27 using slong = __slong__; // Workaround : On linux 64 bits unfortunately 'int64_t' is an alias on 'long' and not on 'long long int' as other platforms. In order to avoid conflicts in operator or method overloads, it is necessary to give the type that is not taken into account.
29}
__slong__ slong
Represents a 32-bit or 64-bit signed integer.
Definition slong.h:27
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
signed long __slong__
Represents a 32-bit or 64-bit signed integer.
Definition value_types.h:23