There is a section in InstallerCreatonCommand.cs that
has the code to self register DLL's
if (filePath.EndsWith(".dll")) {
int hmod = LoadLibrary(filePath);
if (hmod != 0) {
int regSvr =
GetProcAddress(hmod, "DllRegisterServer");
if (regSvr != 0) {
Log(Level.Info,
"Configuring '{0}' for COM Self Registration...",
Path.GetFileName(filePath));
// Add a record for a new
Component
selfRegTable.InsertRecord(fileId, null);
}
FreeLibrary(hmod);
}
This should check for files ending in .ocx and mark
those as self register as well.
Gert Driesen
Tasks
cvs
Public
|
Date: 2005-04-08 16:58 Logged In: YES |
| Filename | Description | Download |
|---|---|---|
| InstallerCreationCommand.cs.patch | Patch to add .ocx files to self register | Download |
| Field | Old Value | Date | By |
|---|---|---|---|
| close_date | - | 2005-04-08 16:58 | drieseng |
| resolution_id | None | 2005-04-08 16:58 | drieseng |
| assigned_to | nobody | 2005-04-08 16:58 | drieseng |
| status_id | Open | 2005-04-08 16:58 | drieseng |
| File Added | 128789: InstallerCreationCommand.cs.patch | 2005-04-06 18:53 | johnwebbcole |
| File Deleted | 128787: | 2005-04-06 18:52 | johnwebbcole |
| File Added | 128787: MsiCreationCommand.cs.patch | 2005-04-06 18:52 | johnwebbcole |
Copyright © 2010 Geeknet, Inc. All rights reserved. Terms of Use