home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 July / PCWorld_2000-07_cd.bin / Komunik / sambar / _SETUP.1 / webcam.h < prev    next >
C/C++ Source or Header  |  1999-08-09  |  1KB  |  46 lines

  1. /*
  2. ** WEBCAM.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with Video for Windows drivers.
  6. **
  7. **        Confidential Property of Tod Sambar
  8. **        (c) Copyright Tod Sambar 1999
  9. **        All rights reserved.
  10. **
  11. **
  12. ** History:
  13. ** Chg#    Date    Description                                                Resp
  14. ** ----    -------    -------------------------------------------------------    ----
  15. **        26JUL99    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__WEBCAM_H__)
  19. #define __WEBCAM_H__
  20.  
  21. #include    <sambar.h>
  22. #include    <vfw.h>
  23. #undef        FAR
  24. #include    <cdjpeg.h>
  25.  
  26. /*
  27. ** Sambar Server WebCam DLL Function Prototypes
  28. */
  29. #if defined(__cplusplus)
  30. extern "C" {
  31. #endif /* defined(__cplusplus) */
  32.  
  33. extern SA_RETCODE SA_EXPORT        webcam_init(SA_CTX *sactx);
  34.  
  35. /*
  36. ** WebCam RPCs
  37. */
  38. extern SA_RETCODE SA_PUBLIC        webcam_snapshot(SA_CTX *sactx, SA_CONN *saconn,
  39.                                     SA_PARAMS *saparams, SA_INT *infop);
  40.  
  41. #if defined(__cplusplus)
  42. }
  43. #endif /* defined(__cplusplus) */
  44.  
  45. #endif /* __WEBCAM_H__ */
  46.