defines.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:

VC书籍

开发平台:

Visual C++

  1. // Helper macros
  2. #define SAFE_RELEASE(x) {if(x){(x)->Release();(x)=NULL;}}
  3. #define SAFE_FREE_STRING(x) {if(x){SysFreeString(x);(x)=NULL;}}
  4. // User Define RTC Event
  5. #define WM_RTC_EVENT      WM_USER+100
  6. #define QCIF_CX_SIZE  176
  7. #define QCIF_CY_SIZE  144
  8. #define QQCIF_CX_SIZE (QCIF_CX_SIZE/2)
  9. #define QQCIF_CY_SIZE (QCIF_CY_SIZE/2)
  10. struct SESSION_DATA {
  11. BSTR bstrName;
  12. BSTR bstrURI;
  13. };