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

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** $Id: token.h,v 1.3 1999/12/08 06:00:38 mrsam Exp $
  3. */
  4. #ifndef token_h
  5. #define token_h
  6. /*
  7. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  8. ** distribution information.
  9. */
  10. /* To keep a reload from executing a duplicate operation -- such as sending
  11. ** a message, each form generates a unique token, which after the operation
  12. ** is complete gets saved in MSGTOKENFILE.  Before starting the operation,
  13. ** MSGTOKENFILE is checked, and if it has our token, the operation is
  14. ** skipped.
  15. */
  16. void tokennew();
  17. void tokennewget();
  18. int tokencheck();
  19. void tokensave();
  20. #endif