home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / ActiveX / ShellExt / contmenu.dpr < prev    next >
Encoding:
Text File  |  2001-05-22  |  400 b   |  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.