home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / sambar / _setup.1 / dyndns.h < prev    next >
C/C++ Source or Header  |  2000-03-15  |  1KB  |  44 lines

  1. /*
  2. ** DYNDNS.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with dyndns.org service.
  6. **
  7. **        Confidential Property of Tod Sambar
  8. **        (c) Copyright Tod Sambar 2000
  9. **        All rights reserved.
  10. **
  11. **
  12. ** History:
  13. ** Chg#    Date    Description                                                Resp
  14. ** ----    -------    -------------------------------------------------------    ----
  15. **        28FEB00    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__DYNDNS_H__)
  19. #define __DYNDNS_H__
  20.  
  21. #include    <sambar.h>
  22.  
  23. /*
  24. ** Sambar Server WebCam DLL Function Prototypes
  25. */
  26. #if defined(__cplusplus)
  27. extern "C" {
  28. #endif /* defined(__cplusplus) */
  29.  
  30. extern SA_RETCODE SA_EXPORT        dyndns_init(SA_CTX *sactx);
  31. extern SA_RETCODE SA_EXPORT        dyndns_exit(SA_CTX *sactx);
  32.  
  33. /*
  34. ** RAS Activity Callback
  35. */
  36. extern SA_VOID SA_PUBLIC        dyndns_ras(SA_CTX *sactx, SA_CHAR *ip,
  37.                                     SA_CHAR *previp, SA_BOOL connected);
  38.  
  39. #if defined(__cplusplus)
  40. }
  41. #endif /* defined(__cplusplus) */
  42.  
  43. #endif /* __DYNDNS_H__ */
  44.