buffer.h
上传用户:biaoge6808
上传日期:2007-08-15
资源大小:42k
文件大小:1k
源码类别:

多媒体

开发平台:

C/C++

  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. /*
  5. NOTICE:
  6. This document contains information that is proprietary to RADVISION LTD..
  7. No part of this publication may be reproduced in any form whatsoever without
  8. written prior approval by RADVISION LTD..
  9. RADVISION LTD. reserves the right to revise this publication and make changes
  10. without obligation to notify any person of such revisions or changes.
  11. */
  12. typedef struct
  13. {
  14.     UINT32 length;
  15.     BYTE*  buffer;
  16. } BUFFER;
  17. BOOL buffAddToBuffer(BUFFER* to,BUFFER* from, UINT32 offset);
  18. BOOL buffValid(BUFFER* buff,UINT32 size);
  19. BUFFER buffCreate(void* data,int size);
  20. #ifdef __cplusplus
  21. }
  22. #endif