Jump to content

URL Parameter x ISAPI - HELP


eduardo.junqueira

Recommended Posts

Change the Main Program

 

{*$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module


{$ifndef UNIGUI_VCL}
library
{$else}
program
{$endif}

 

 

{$ifndef UNIGUI_VCL}
exports
  GetExtensionVersion,
  HttpExtensionProc,
  TerminateExtension;
{$endif}

begin
{$ifdef UNIGUI_VCL}
  Application.Initialize;
  TUniServerModule.Create(Application);
  Application.Run;
{$endif}
end.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...