home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
CONTMENU.DPR
< prev
next >
Wrap
Text File
|
1997-05-12
|
552b
|
24 lines
// You need to merge the ContMenu.reg file into the registry before you can use
// shell extension. This Context Menu shell extension will allow you to right
// click on DPR files from the Explorer and Compile them using the DCC32.exe
// command line compiler.
library contmenu;
uses
SysUtils,
Classes,
ComServ,
ComObj,
ContextM in 'ContextM.pas',
ShlObj in 'Shlobj.pas';
exports
DllGetClassObject resident,
DllCanUnloadNow resident,
DllRegisterServer resident,
DllUnregisterServer resident;
begin
end.