allenchow Posted July 18, 2018 Posted July 18, 2018 When compiling Delphi (XE10) It gives errors below : [dcc32 Error] ProjectDLL.dpr(12): E2003 Undeclared identifier: 'GetExtensionVersion' [dcc32 Error] ProjectDLL.dpr(13): E2003 Undeclared identifier: 'HttpExtensionProc' [dcc32 Error] ProjectDLL.dpr(14): E2003 Undeclared identifier: 'TerminateExtension' Quote
Marlon Nardi Posted July 18, 2018 Posted July 18, 2018 check your build directives in .dpr {$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module {$ifndef UNIGUI_VCL} exports GetExtensionVersion, HttpExtensionProc, TerminateExtension; {$endif} Quote
allenchow Posted July 19, 2018 Author Posted July 19, 2018 I need to add ISAPIApp inside USES manually Quote
myrealite Posted July 25, 2019 Posted July 25, 2019 if I commented this line for ISAPI module then I have the same error . Is there any idea for this? developing under XE8, unigui FMSoft_uniGUI_Complete_Professional_1.90.0.1504.exe {$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.