xtd 0.2.0
Loading...
Searching...
No Matches
ulong.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 ulong = __ulong__; // Workaround : On linux 64 bits unfortunately 'uint64_t' is an alias on 'unigned long' and not on 'unsigned 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}
__ulong__ ulong
Represents a 32-bit or 64-bit unsigned integer.
Definition ulong.h:27
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
unsigned long __ulong__
Represents a 32-bit or 64-bit unsigned integer.
Definition value_types.h:26