home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Activex / Shellext / contmenu.dpr < prev    next >
Text File  |  1999-08-11  |  400b  |  19 lines

  1. // This COM server defines a Context Menu shell extension.  This allows the user
  2. // to right click on Delphi Project files (.DPR) from the Explorer and compile
  3. // them using the DCC32.exe command line compiler.
  4.  
  5. library ContMenu;
  6.  
  7. uses
  8.   ComServ,
  9.   ContextM in 'ContextM.pas';
  10.  
  11. exports
  12.   DllGetClassObject,
  13.   DllCanUnloadNow,
  14.   DllRegisterServer,
  15.   DllUnregisterServer;
  16.  
  17. begin
  18. end.
  19.