home *** CD-ROM | disk | FTP | other *** search
/ ftp.rarlab.com / 2014.05.ftp.rarlab.com.tar / ftp.rarlab.com / rar / UnrarGUI.zip / UnrarGUI.txt < prev    next >
Text File  |  2003-12-29  |  1KB  |  28 lines

  1.  
  2.       Unrar GUI library for Borland C++ Builder 5.0
  3.  
  4.  
  5.   I made this library wrap unrar.dll, that is a easy ways to manage read-only file in RAR package. files in package can be directly load at run-time.
  6.  
  7.   when you ask a file, RarDll expand it to memory without pass disk file(see Unrardll.h). and you can set operating on Background mode or GUI mode.
  8.  
  9.   if you use small package, that process will be quickly. because Unrar.dll test every name in package.
  10.  
  11.  
  12.   UnrarGUIrelease.lib made in release mode. without any debug information. use this library on C++ Builder by "Project|Add|Library" and #include "Unrardll.h".
  13.  
  14.   "DLLMan.cpp" already in this library, but "DLLMan.h" are request in "Unrardll.h".
  15.   Two *.dfm may need for CPP linker, put them in BCC library path.
  16.  
  17.  
  18.  
  19.   "DLLAbort" will be automatic catch by Application, if you want to know "unrar.dll" available, use this
  20.  
  21.   try {
  22.      RarDll rar;
  23.   } catch (DLLAbort &Except) {
  24.      // Here manage DLL abort.
  25.   }
  26.  
  27.  
  28. readme end.