CABWIZ INF file: access from setup.dll

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to access the parameters of a CABWIZ INF file (Information
File) from the custom setup.dll specified in the CESetupDLL string in the
[DefaultInstall] section?

For example, if this section is in the INF file:

[Strings]
ShowMessages="Yep"

Can I access the ShowMessages string from inside my setup.dll written in eVC?

Thanks,
Steve
 
No, you can not. Besides, it's a constant so you can add this string to the
setup dll source code instead.

If you need to change it in one place only, you can parse INF and generate
source code file with this string.


--
Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top