home *** CD-ROM | disk | FTP | other *** search
/ Thinkpad Essentials 1997 / cd1may97.iso / DATA.Z / FILEIO.PRT < prev    next >
Text File  |  1994-07-26  |  531b  |  10 lines

  1. ; DLL call for executing file I/O functions.
  2.  
  3. ; The following calls evoke the "File Open/Save" dialog boxes.
  4. AMTAPP.DLL: BOOL WINAPI LIB_OpenDialog(LPSTR, LPSTR[256], LPSTR, LPSTR);
  5. AMTAPP.DLL: BOOL WINAPI LIB_SaveDialog(LPSTR, LPSTR[256], LPSTR, LPSTR);
  6. ;Example1-    LIB_OpenDialog("File Open",@filename, "TXT(*.txt),*.txt,All Files(*.*),*.*",".txt");
  7. ;Example2-    LIB_SaveDialog("File Save",@filename, "TXT(*.txt),",".txt");
  8. ;Remember that these are just calls to the dialog boxes and do not actually
  9. ;perform any file I/O.
  10.