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 / link.h < prev    next >
C/C++ Source or Header  |  2000-10-26  |  797b  |  29 lines

  1. /* -*-Mode:C; tab-width:4; indent-tabs-mode:t; c-file-style:"bsd";-*- */
  2. // $Id: link.h,v 1.7 2000/10/05 12:09:35 burgbach Exp $
  3. #ifndef __LINK_H__
  4. #define __LINK_H__
  5.  
  6. #include "progect.h"
  7.  
  8. // prototypes
  9. // Links
  10. Err AddLinkRecord(DmOpenRef dbP, UInt32 uniqueID, UInt16 *index, 
  11.     AppLinkType app, Char *dbName);
  12. pgErr LinkCreateLinkTree(DmOpenRef dbP, AppLinkType app);
  13. pgErr ExportToMemo(DmOpenRef dbP, MemoExportOptionsType options);
  14. pgErr DirectLinkFollow(DmOpenRef dbP, UInt16 index);
  15.  
  16.  
  17.  
  18. //
  19. // LinkMaster supports.
  20. //
  21.  
  22. void PublishToLinkMaster(DmOpenRef dpP, UInt16 index);
  23. void RequestLinkViaLinkMaster(Char const* dbName, UInt16 index);
  24. void SetLinkMasterLink(LinkSimplePtr p1, LinkInfoPtr p2);
  25. void FollowLinkViaLinkMaster(UInt16 index);
  26. void RemoveLinkViaLinkMaster(UInt16 index);
  27.  
  28. #endif
  29.