stdef.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //////////////////////////////////////////////////////////////////////////
  2. // 结构体的定义;
  3. #ifndef __STDEF_20150808__
  4. #define __STDEF_20150808__
  5. //////////////////////////////////////////////////////////////////////////
  6. // 共享目录信息表NetShareInfo;
  7. typedef struct _ST_ImgShareInfo_
  8. {
  9. BOOL bEnable; // 是否启用;
  10. TCHAR szBranchId[MAX_PATH]; // 域名;
  11. TCHAR szShareDirectory[MAX_PATH]; // 共享的目录;
  12. BYTE byMinCapacity; // 最小;
  13. BYTE byMaxCapacity; // 最大;
  14. BYTE byImgType; // 相片类型;
  15. BYTE byPriority; // 优先级;
  16. _ST_ImgShareInfo_()
  17. {
  18. memset(szBranchId,0,sizeof(TCHAR)*MAX_PATH);
  19. memset(szShareDirectory,0,sizeof(TCHAR)*MAX_PATH);
  20. bEnable = FALSE;
  21. byMinCapacity = 0;
  22. byMaxCapacity = 0;
  23. byImgType = 0;
  24. byPriority = 0;
  25. }
  26. _ST_ImgShareInfo_(const _ST_ImgShareInfo_ &another)
  27. {
  28. bEnable = another.bEnable;
  29. byMinCapacity = another.byMinCapacity;
  30. byMaxCapacity = another.byMaxCapacity;
  31. byPriority = another.byPriority;
  32. byImgType = another.byImgType;
  33. _stprintf_s(szBranchId,_T("%s"),another.szBranchId);
  34. _stprintf_s(szShareDirectory,_T("%s"),another.szShareDirectory);
  35. }
  36. _ST_ImgShareInfo_& operator=(const _ST_ImgShareInfo_ &another)
  37. {
  38. if ( this == &another )
  39. {
  40. return *this;
  41. }
  42. bEnable = another.bEnable;
  43. byMinCapacity = another.byMinCapacity;
  44. byMaxCapacity = another.byMaxCapacity;
  45. byPriority = another.byPriority;
  46. byImgType = another.byImgType;
  47. _stprintf_s(szBranchId,_T("%s"),another.szBranchId);
  48. _stprintf_s(szShareDirectory,_T("%s"),another.szShareDirectory);
  49. return *this;
  50. }
  51. }ImgShareInfo,*pImgShareInfo;
  52. #endif