Jump to content

Error when using ISAPI mode


allenchow

Recommended Posts

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'

Link to comment
Share on other sites

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}
Link to comment
Share on other sites

  • 1 year later...

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
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...