home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / repease / rep_prot.pas < prev    next >
Pascal/Delphi Source File  |  1995-07-18  |  583b  |  12 lines

  1. {*****************************************************************************
  2.                         Calleable Function Prototypes
  3. *****************************************************************************}
  4. function form(FormInfo: StrForm): Integer; far; external 'REP';
  5. function RepInit(RepInfo: StrRep): Integer; far; external 'REP';
  6. function RepRec: Integer; far; external 'REP';
  7. function RepExit: Integer; far; external 'REP';
  8.  
  9. function RepGetParent: THandle; far; external 'REP';
  10. function RepSetMsgCallback(MsgCallback: pointer) : Integer; far; external 'REP';
  11.  
  12.