bitfield.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. #ifndef __BITFIELD_H
  13. #define __BITFIELD_H
  14. #include <rvcommon.h>
  15. UINT32 bitfieldSet(
  16.     IN  UINT32  value,
  17.     IN  UINT32  bitfield,
  18.     IN  int     nStartBit,
  19.     IN  int     nBits);
  20. UINT32 bitfieldGet(
  21.     IN  UINT32  value,
  22.     IN  int     nStartBit,
  23.     IN  int     nBits);
  24. #endif /* __BITFIELD_H */
  25. #ifdef __cplusplus
  26. }
  27. #endif