home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / imagefx_sdk / sas / scanlib / eged.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-11  |  343 b   |  13 lines

  1. #include <scan/modall.h>
  2. #include <scan/escan_protos.h>
  3.  
  4. int __stdargs EGed_NewWindow (struct ENewGad *newgad, char **text, long tag1, ...)
  5. {
  6.    return( EGed_NewWindowA(newgad, text, &tag1) );
  7. }
  8.  
  9. struct EGedContext * __stdargs EGed_NewCreate (struct ENewGad *ng, char **text, long tag1, ...)
  10. {
  11.    return( EGed_NewCreateA(ng, text, &tag1) );
  12. }
  13.