maildircreate.h
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #ifndef maildircreate_h
  2. #define maildircreate_h
  3. /*
  4. ** Copyright 1998 - 1999 Double Precision, Inc.
  5. ** See COPYING for distribution information.
  6. */
  7. #if HAVE_CONFIG_H
  8. #include "config.h"
  9. #endif
  10. #ifdef  __cplusplus
  11. extern "C" {
  12. #endif
  13. static const char maildircreate_h_rcsid[]="$Id: maildircreate.h,v 1.4 1999/12/06 13:21:05 mrsam Exp $";
  14. int maildir_try_create(const char *, /* Maildir */
  15. const char *, /* Unique when creating multiple msgs by one pid */
  16. unsigned long, /* If >0, we know the size of the message */
  17. char **, /* On exit, filename in tmp */
  18. char **); /* On exit, filename in new */
  19. /* On exit, if the tmp file can be created, return 0, else
  20. ** return -1.  If we return -1 try again.
  21. */
  22. int maildir_try_create_hostname(const char *, /* Maildir */
  23. const char *, /* Unique when creating multiple msgs by one pid */
  24. unsigned long, /* If >0, we know the size of the message */
  25. const char *, /* Hostname */
  26. char **, /* On exit, filename in tmp */
  27. char **); /* On exit, filename in new */
  28. #ifdef  __cplusplus
  29. }
  30. #endif
  31. #endif