adf_util.h
上传用户:hy_wanghao
上传日期:2007-01-08
资源大小:279k
文件大小:1k
源码类别:

Shell编程

开发平台:

Visual C++

  1. #ifndef _ADF_UTIL_H
  2. #define _ADF_UTIL_H 1
  3. /*
  4.  *  ADF Library. (C) 1997-1999 Laurent Clevy
  5.  *
  6.  *  adf_util.h
  7.  *
  8.  */
  9. #include"prefix.h"
  10. #include "adf_str.h"
  11. void swLong(unsigned char* buf, unsigned long val);
  12. void swShort(unsigned char* buf, unsigned short val);
  13. PREFIX struct List* newCell(struct List* list, void* content);
  14. PREFIX void freeList(struct List* list);
  15. void adfDays2Date(long days, int *yy, int *mm, int *dd);
  16. BOOL adfIsLeap(int y);
  17.     void
  18. adfTime2AmigaTime(struct DateTime dt, long *day, long *min, long *ticks );
  19.     struct DateTime
  20. adfGiveCurrentTime( void );
  21. void dumpBlock(unsigned char *buf);
  22. /*##########################################################################*/
  23. #endif /* _ADF_UTIL_H */