home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 110 / af110sub.adf / DTConvert.lzx / DTConvert / DTConvert_iprotos.h < prev    next >
C/C++ Source or Header  |  2016-01-15  |  925b  |  27 lines

  1.  
  2. /* DTConvert.c */
  3. void chkabort ( void );
  4. long wbmain ( struct WBStartup *wbstartup );
  5. int main ( int ac , STRPTR *av );
  6. void Message ( STRPTR fmt , ...);
  7.  
  8. /* gui.c */
  9. int SetupScreen ( void );
  10. void CloseDownScreen ( void );
  11. int OpenDTConvert_MAINWindow ( void );
  12. void CloseDTConvert_MAINWindow ( void );
  13. int OpenDTConvert_DATATYPEWindow ( void );
  14. void CloseDTConvert_DATATYPEWindow ( void );
  15.  
  16. /* misc.c */
  17. struct Node *GetNumNode ( struct List *list , ULONG num );
  18. void mysprintf ( STRPTR buffer , STRPTR fmt , ...);
  19. APTR AllocVecPooled ( APTR poolheader , ULONG memsize );
  20. void FreeVecPooled ( APTR poolheader , APTR mem );
  21. STRPTR GetLockName ( BPTR lock , STRPTR name );
  22. void AttemptOpenLibrary ( struct Library **library , STRPTR title , STRPTR libname , ULONG libversion );
  23. void ClearMsgPort ( struct MsgPort *port );
  24.  
  25. /* convert.c */
  26. void Convert ( STRPTR srcname , STRPTR datatypename , BOOL iff , STRPTR destname );
  27.