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

多媒体

开发平台:

C/C++

  1. /*
  2. NOTICE:
  3. This document contains information that is proprietary to RADVISION LTD..
  4. No part of this publication may be reproduced in any form whatsoever without
  5. written prior approval by RADVISION LTD..
  6. RADVISION LTD. reserves the right to revise this publication and make changes
  7. without obligation to notify any person of such revisions or changes.
  8. */
  9. #pragma warning (push,3)
  10. #define  STRICT
  11. #include <windows.h>
  12. #pragma warning (pop)
  13. #include <rvcommon.h>
  14. #include <rtp.h>
  15. #include <rtcp.h>
  16. #include <payload.h>
  17. static HINSTANCE hinst;
  18. HINSTANCE getHInst(void)
  19. {
  20.     return hinst;
  21. }
  22. BOOL WINAPI DllMain(
  23.     IN HINSTANCE hinstDLL,  /* handle to DLL module */
  24.     IN DWORD fdwReason,     /* reason for calling function */
  25.     IN LPVOID lpvReserved   /* reserved */
  26.    )
  27. {
  28.     if (lpvReserved);
  29.     switch(fdwReason)
  30.     {
  31.     case DLL_PROCESS_ATTACH:
  32.         hinst=hinstDLL;
  33.         break;
  34.     case DLL_PROCESS_DETACH:
  35.         break;
  36.     }
  37.     return TRUE;
  38. }
  39. RVAPI void RVCALLCONV __ForceLink__(void)
  40. {
  41.     rtpInit();
  42.     rtcpInit();
  43.     rtpPCMUGetHeaderLength();
  44. }