commit 2025-08-22 13:59 edit a bit ZCppMain/ZMainHead.H
This commit is contained in:
@ -556,75 +556,75 @@ namespace ZNsMain
|
||||
*/
|
||||
#endif
|
||||
|
||||
typedef unsigned int ZTypUInt ;
|
||||
typedef unsigned short ZTypUShort ;
|
||||
typedef unsigned long ZTypULong ;
|
||||
typedef unsigned int ZTypUInt ;
|
||||
typedef unsigned short ZTypUShort ;
|
||||
typedef unsigned long ZTypULong ;
|
||||
|
||||
typedef unsigned char ZTypIntUChar ;
|
||||
typedef unsigned int ZTypIntUInt ;
|
||||
typedef unsigned short ZTypIntUShort ;
|
||||
typedef unsigned long ZTypIntULong ;
|
||||
typedef unsigned char ZTypIntUChar ;
|
||||
typedef unsigned int ZTypIntUInt ;
|
||||
typedef unsigned short ZTypIntUShort ;
|
||||
typedef unsigned long ZTypIntULong ;
|
||||
|
||||
typedef unsigned char ZTypIntUC ;
|
||||
typedef unsigned int ZTypIntUI ;
|
||||
typedef unsigned short ZTypIntUS ;
|
||||
typedef unsigned long ZTypIntUL ;
|
||||
typedef unsigned char ZTypIntUC ;
|
||||
typedef unsigned int ZTypIntUI ;
|
||||
typedef unsigned short ZTypIntUS ;
|
||||
typedef unsigned long ZTypIntUL ;
|
||||
|
||||
#if(defined(__CPU_BIT_CNT__) && __CPU_BIT_CNT__>=64)
|
||||
#ifdef _WIN
|
||||
typedef __int64 ZTypLength ; // 문자열의 길이를 나타내는 자료형.
|
||||
typedef __int64 ZTypLength ; // 문자열의 길이를 나타내는 자료형.
|
||||
// 송수신 버퍼의 크기 자료형으로도 쓰인다.
|
||||
typedef unsigned __int64 ZTypULen ;
|
||||
typedef unsigned __int64 ZTypULength;
|
||||
#else
|
||||
typedef long ZTypLength ;
|
||||
typedef unsigend long ZTypULen ;
|
||||
typedef unsigend long ZTypULength ;
|
||||
typedef long ZTypLength ;
|
||||
typedef unsigend long ZTypULen ;
|
||||
typedef unsigend long ZTypULength ;
|
||||
#endif
|
||||
#else // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64
|
||||
|
||||
typedef long ZTypLength ;
|
||||
typedef unsigend long ZTypULen ;
|
||||
typedef unsigend long ZTypULength ;
|
||||
typedef long ZTypLength ;
|
||||
typedef unsigend long ZTypULen ;
|
||||
typedef unsigend long ZTypULength ;
|
||||
|
||||
#endif // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64
|
||||
|
||||
#ifdef _WIN
|
||||
typedef __int64 ZTypLengthFile ; // 파일의 크기를 나타내는 자료형.
|
||||
typedef __int64 ZTypLengthFile ; // 파일의 크기를 나타내는 자료형.
|
||||
#else
|
||||
typedef long ZTypLengthFile ; // 파일의 크기를 나타내는 자료형.
|
||||
typedef long ZTypLengthFile ; // 파일의 크기를 나타내는 자료형.
|
||||
#endif
|
||||
typedef ZTypLengthFile ZTypLengthF ;
|
||||
typedef ZTypLengthFile ZTypLengthF ;
|
||||
|
||||
|
||||
#ifdef _WIN
|
||||
typedef __int64 ZTypLongLong ;
|
||||
typedef unsigned __int64 ZTypULongLong ;
|
||||
typedef __int64 ZTypLongLong ;
|
||||
typedef unsigned __int64 ZTypULongLong ;
|
||||
|
||||
typedef __int64 ZTypIntLLong ;
|
||||
typedef unsigned __int64 ZTypIntULLong ;
|
||||
typedef __int64 ZTypIntLLong ;
|
||||
typedef unsigned __int64 ZTypIntULLong ;
|
||||
#else
|
||||
typedef long long ZTypLongLong ;
|
||||
typedef unsigned long long ZTypULongLong ;
|
||||
typedef long long ZTypLongLong ;
|
||||
typedef unsigned long long ZTypULongLong ;
|
||||
|
||||
typedef long long ZTypIntLLong ;
|
||||
typedef unsigned long long ZTypIntULLong ;
|
||||
typedef long long ZTypIntLLong ;
|
||||
typedef unsigned long long ZTypIntULLong ;
|
||||
#endif
|
||||
|
||||
|
||||
typedef ZTypLongLong ZTypLLong ;
|
||||
typedef ZTypULongLong ZTypULLong ;
|
||||
typedef ZTypLongLong ZTypLLong ;
|
||||
typedef ZTypULongLong ZTypULLong ;
|
||||
|
||||
typedef ZTypLongLong ZTypIntLL ;
|
||||
typedef ZTypULongLong ZTypIntULL ;
|
||||
typedef ZTypLongLong ZTypIntLL ;
|
||||
typedef ZTypULongLong ZTypIntULL ;
|
||||
|
||||
|
||||
#ifdef _WIN64
|
||||
typedef __int64 ZTypIntPtr ; // 포인터를 표현하는 정수 크기다.
|
||||
typedef unsigned __int64 ZTypIntUPtr ; // 포인터를 표현하는 양의 정수 크기다.
|
||||
typedef __int64 ZTypIntPtr ; // 포인터를 표현하는 정수 크기다.
|
||||
typedef unsigned __int64 ZTypIntUPtr ; // 포인터를 표현하는 양의 정수 크기다.
|
||||
#else
|
||||
typedef long ZTypIntPtr ;
|
||||
typedef unsigned long ZTypIntUPtr ;
|
||||
typedef long ZTypIntPtr ;
|
||||
typedef unsigned long ZTypIntUPtr ;
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user