home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / progect-src-0.20.tar.gz / progect-src-0.20.tar / progect-0.20 / flat.h < prev    next >
C/C++ Source or Header  |  2000-10-26  |  517b  |  19 lines

  1. #ifndef __FLAT_H__
  2. #define __FLAT_H__
  3.  
  4. #include "progect.h"
  5.  
  6. // prototypes
  7. // flat
  8. Boolean  FlatFilter(DmOpenRef dbP, UInt16 index);
  9. pgErr    FlatCreateList(DmOpenRef dbP);
  10. pgErr    FlatCreateGlobalList(void);
  11. Int16    CmpTasks(TaskRecordType *a, TaskRecordType *b);
  12. Int16    CmpDate(TaskRecordType *a, TaskRecordType *b);
  13. Int16    CmpPriority(TaskRecordType *a, TaskRecordType *b);
  14. pgErr    Sort(DmOpenRef dbP, UInt32 *p);
  15. pgErr    FlatSort(DmOpenRef dbP);
  16. void     FlatLinkAll(DmOpenRef dbP, Boolean link);
  17.  
  18. #endif
  19.