diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-21 19:37:57 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-21 19:37:57 +0200 |
| commit | afb57783942238da489de6677941ecc64f9d8929 (patch) | |
| tree | 3748945af3c8ff4ced93f5fe10d5c30951fc6230 | |
| parent | b7c41e8d5dc490dd3a5d291d73b0ac382a50891c (diff) | |
newstd.hxx: Add types.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
| -rw-r--r-- | Comm/newstd.hxx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Comm/newstd.hxx b/Comm/newstd.hxx index 91fa3788..913d2a28 100644 --- a/Comm/newstd.hxx +++ b/Comm/newstd.hxx @@ -26,8 +26,18 @@ typedef void(*NWindowCallback)(NWindow*); typedef int NOSType;
typedef bool NOSBool;
+typedef __UINT64_TYPE__ UInt64;
+typedef __UINT32_TYPE__ UInt32;
+typedef __UINT16_TYPE__ UInt16;
+typedef __UINT8_TYPE__ UInt8;
+
+typedef __INT64_TYPE__ SInt64;
+typedef __INT32_TYPE__ SInt32;
+typedef __INT16_TYPE__ SInt16;
+typedef __INT8_TYPE__ SInt8;
+
/**
-@brief This contains has standard application functions.
+ @brief Standard library class.
*/
class NUser final
{
|
