DelphinSoftware / vcl-styles-utils

Automatically exported from code.google.com/p/vcl-styles-utils
0 stars 0 forks source link

External Exception EEDFADE #62

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Just run any sample project (CodeClasses.iss Components.iss VCLStylesDemo.iss)
2.
3.

What is the expected output? What do you see instead?
An error 'External Exception EEDFADE' occured on the method 
LoadVCLStyle(ExpandConstant('{tmp}\{#VCLStyle}'));

What version of the product are you using? On what operating system?
Inno Setup Compiler v 5.5.4(a) - OS Win7 SP1 Ultimate x64

Please provide any additional information below.

Original issue reported on code.google.com by d.netse...@gmail.com on 22 Jun 2014 at 8:45

GoogleCodeExporter commented 9 years ago
You are using the ANSI version of inno setup so you must call the LoadVCLStyleA 
method on this way 

procedure LoadVCLStyle(VClStyleFile: String); external 
'LoadVCLStyleA@files:VclStylesInno.dll stdcall';

Original comment by Rodrigo.Ruz.V@gmail.com on 26 Jun 2014 at 8:13

GoogleCodeExporter commented 9 years ago
Yes, it's valid, the problem was in this. Thanks for the resolving. Probably, I 
inattentively studied your article.

Original comment by d.netse...@gmail.com on 26 Jun 2014 at 8:33