home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / CONTMENU.DPR < prev    next >
Text File  |  1997-05-12  |  552b  |  24 lines

  1. // You need to merge the ContMenu.reg file into the registry before you can use
  2. // shell extension.   This Context Menu shell extension will allow you to right
  3. // click on DPR files from the Explorer and Compile them using the DCC32.exe
  4. // command line compiler.
  5.  
  6. library contmenu;
  7.  
  8. uses
  9.   SysUtils,
  10.   Classes,
  11.   ComServ,
  12.   ComObj,
  13.   ContextM in 'ContextM.pas',
  14.   ShlObj in 'Shlobj.pas';
  15.  
  16. exports
  17.   DllGetClassObject resident,
  18.   DllCanUnloadNow resident,
  19.   DllRegisterServer resident,
  20.   DllUnregisterServer resident;
  21.  
  22. begin
  23. end.
  24.