edit ZMainHead.H

This commit is contained in:
2021-02-25 17:34:50 +09:00
parent 48678083ab
commit 9a3bff1103

View File

@ -569,24 +569,24 @@ namespace ZNsMain
#if(defined(__CPU_BIT_CNT__) && __CPU_BIT_CNT__>=64) #if(defined(__CPU_BIT_CNT__) && __CPU_BIT_CNT__>=64)
#ifdef _WIN #ifdef _WIN
typedef __int64 ZTypLLength ; // 문자열의 길이를 나타내는 자료형. typedef __int64 ZTypLength ; // 문자열의 길이를 나타내는 자료형.
// 송수신 버퍼의 크기 자료형으로도 쓰인다. // 송수신 버퍼의 크기 자료형으로도 쓰인다.
#else #else
typedef long ZTypLLength ; typedef long ZTypLength ;
#endif #endif
#else // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64 #else // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64
typedef long ZTypLLength ; typedef long ZTypLength ;
#endif // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64 #endif // !defined(__CPU_BIT_CNT__) || __CPU_BIT_CNT__<64
#ifdef _WIN #ifdef _WIN
typedef __int64 ZTypLLengthFile; // 파일의 크기를 나타내는 자료형. typedef __int64 ZTypLengthFile; // 파일의 크기를 나타내는 자료형.
#else #else
typedef long ZTypLLengthFile; // 파일의 크기를 나타내는 자료형. typedef long ZTypLengthFile; // 파일의 크기를 나타내는 자료형.
#endif #endif
typedef ZTypLLengthFile ZTypLLengthF; typedef ZTypLengthFile ZTypLengthF;
#ifdef _WIN #ifdef _WIN
@ -2233,11 +2233,11 @@ namespace ZNsMain
virtual ~ZIDelgtMSG(){} virtual ~ZIDelgtMSG(){}
virtual ZTypIntI GetTypeID() const virtual ZTypLLong GetTypeID() const
{ {
return 0; return 0;
}/* }/*
virtual ZTypIntI GetTypeID() const*/ virtual ZTypLLong GetTypeID() const*/
virtual const char* GetTypeName() const virtual const char* GetTypeName() const
{ {
@ -2245,23 +2245,23 @@ namespace ZNsMain
}/* }/*
virtual const char* GetTypeID() const*/ virtual const char* GetTypeID() const*/
virtual int GetIMSGPtrOfID(int AI_TypeID, ZIDelgtMSG*& APR_ZIDelgtMSG) virtual ZTypLLong GetIMSGPtrOfID(ZTypLLong AI_TypeID, ZIDelgtMSG*& APR_ZIDelgtMSG)
{ {
APR_ZIDelgtMSG=0; return EIMSG_OK; APR_ZIDelgtMSG=0; return EIMSG_OK;
}/* }/*
virtual int GetIMSGPtrOfID(int AI_TypeID, ZIDelgtMSG*R APR_ZIDelgtMSG)*/ virtual ZTypLLong GetIMSGPtrOfID(ZTypLLong AI_TypeID, ZIDelgtMSG*R APR_ZIDelgtMSG)*/
virtual ZTypIntPtr SendMSG(ZIDelgtMSG& ArZIDelgtMSG, ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen, void* AP_Void=0, ...) virtual ZTypIntPtr SendMSG(ZIDelgtMSG& ArZIDelgtMSG, ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen, void* AP_Void=0, ...)
{ {
return EIMSG_OK; return EIMSG_OK;
}/* }/*
virtual IntPtr SendMSG(ZIDelgtMSG& ArZIDelgtMSG, ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen,void* AP_Void=0, ...)*/ virtual ZTypIntPtr SendMSG(ZIDelgtMSG& ArZIDelgtMSG, ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen,void* AP_Void=0, ...)*/
virtual ZTypIntPtr RecvMSG(ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen, void* AP_Void=0, ...) virtual ZTypIntPtr RecvMSG(ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypLength AI_MsgLen, void* AP_Void=0, ...)
{ {
return EIMSG_OK; return EIMSG_OK;
}/* }/*
virtual ZTypIntPtr RecvMSG(ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypIntI AI_MsgLen, void* AP_Void=0, ...)*/ virtual ZTypIntPtr RecvMSG(ZTypIntI AI_MsgNo, const char* ApcMsgData, ZTypLength AI_MsgLen, void* AP_Void=0, ...)*/
public: public:
};/* };/*