#pragma once
|
|
#define DEFAULTPORT_SEC ( 5009 )
|
#define DEFAULTPORT_MAIN ( 5011 )
|
#define DEFAULTPORT_MSG ( 5013 )
|
#define DEFAULTPORT_ACE ( 5014 )
|
#define DEFAULTPORT_EXT ( 5019 )
|
#define DEFAULTPORT_ORG ( 5010 )
|
#define DEFAULTPORT_FILE ( 5012 )
|
|
#define DEFAULTPORT_UPS ( 5018 )
|
#define DEFAULTPORT_MCROWD ( 5016 )
|
#define DEFAULTPORT_CROWD ( 5017 )
|
#define DEFAULTPORT_NETDISK ( 5015 )
|
#define DEFAULTPORT_DATA ( 5033 )
|
|
#define DEFAULTPORT_EXTWEB ( 5020 )
|
#define DEFAULTPORT_MOBOX ( 5023 )
|
|
#define DEFAULTPORT_CANLENDARWEB ( 5027 )
|
typedef struct _stUploadDoc{
|
CString strFileName;
|
CString strFilePath;
|
CString strFileID;
|
CString strFileSFlag;
|
__int64 nFileSize;
|
_stUploadDoc() : strFileName(_T("")),strFilePath(_T("")), strFileID(_T("")), strFileSFlag(_T("")),nFileSize(0){};
|
}stUploadDoc;
|
|
|
typedef CArray<stUploadDoc, stUploadDoc&> CArrayUploadDoc;
|
|
typedef struct _stUploadDocMgr{
|
CString strParGUID;
|
CArrayUploadDoc arUploadDoc;
|
int nType;
|
_stUploadDocMgr() : strParGUID(_T("")),nType(0){};
|
}stUploadDocMgr;
|