12345678910111213141516171819202122232425262728293031323334 |
- #ifndef __THE_LYFZ_CLOUD_INTERFACE_20160612__
- #define __THE_LYFZ_CLOUD_INTERFACE_20160612__
- static const GUID IID_TheInterface = { 0xf68976f0, 0xcd31, 0x4b89, { 0xb8, 0xbd, 0x43, 0x39, 0x77, 0xf8, 0x4c, 0x48 } };
- interface ICloudSelection:public IUnknown
- {
- virtual void SetEnvInfoEx(
- IN LPCTSTR lpHostName,
- IN LPCTSTR lpBranchId,
- IN LPVOID lpTblVerion,
- IN LPVOID lpBranchInfo,
- IN LPVOID lpNetShareInfo
- ) = 0;
-
- virtual BOOL IUploadOrderInfo(
- IN UINT8 nActionType,
- IN LPCTSTR lpMaskId,
- IN LPCTSTR lpBranchId,
- IN LPCTSTR lpBranchName,
- IN LPCTSTR lpBranchTel,
- IN LPCTSTR lpOrderNum,
- IN LPCTSTR lpScenery,
- IN LPCTSTR lpCustomerName,
- IN LPCTSTR lpCustomerTel,
- IN CArray<CStringArray,CStringArray> &AryGoodsInfo,
- IN OUT LPTSTR lpReturnString,
- IN const INT& nMaxLen
- ) = 0;
- };
- #endif
|