|
Version: 3.0.5
|
|
#define | wxLongLongFmtSpec |
| This macro is defined to contain the printf() format specifier using which 64 bit integer numbers (i.e. More...
|
|
|
wxLongLong_t | wxLL (number) |
| This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants: More...
|
|
wxLongLong_t | wxULL (number) |
| This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants: More...
|
|
◆ wxLongLongFmtSpec
#define wxLongLongFmtSpec |
This macro is defined to contain the printf()
format specifier using which 64 bit integer numbers (i.e.
those of type wxLongLong_t
) can be printed. Example of using it:
#ifdef wxLongLong_t
wxLongLong_t ll =
wxLL(0x1234567890abcdef);
#endif
- See also
- wxLL()
Include file:
#include <wx/longlong.h>
◆ wxLL()
wxLongLong_t wxLL |
( |
number |
| ) |
|
This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants:
#ifdef wxLongLong_t
wxLongLong_t ll =
wxLL(0x1234567890abcdef);
#endif
- See also
- wxULL(), wxLongLong
Include file:
#include <wx/longlong.h>
◆ wxULL()
wxLongLong_t wxULL |
( |
number |
| ) |
|
This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants:
#ifdef wxLongLong_t
unsigned wxLongLong_t ll =
wxULL(0x1234567890abcdef);
#endif
- See also
- wxLL(), wxLongLong
Include file:
#include <wx/longlong.h>
wxLongLong_t wxLL(number)
This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...
#define wxLongLongFmtSpec
This macro is defined to contain the printf() format specifier using which 64 bit integer numbers (i....
Definition: longlong.h:225
wxLongLong_t wxULL(number)
This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...