ystate.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* -*- Mode: C; c-file-style: "bsd" -*- */
  2. #ifndef YSTATE_H
  3. #define YSTATE_H
  4. #ifdef YARROW_SAVE_STATE
  5. #include "ycipher.h"
  6. #include "ytypes.h"
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. typedef struct {
  11.     byte seed[CIPHER_KEY_SIZE * 2];    /* 2k bits saved to seed file */
  12. } Yarrow_STATE;
  13. int STATE_Save( const char *filename, const Yarrow_STATE* state );
  14. int STATE_Load( const char *filename, Yarrow_STATE* state );
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* YARROW_SAVE_STATE */
  19. #endif /* YSTATE_H */