home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Bin / dclnet50.bpl / 0 / RCDATA / WEBMODULES < prev   
Text File  |  1999-08-11  |  751b  |  71 lines

  1. library %s;
  2.  
  3. uses
  4.   WebBroker,
  5.   ISAPIApp;
  6.  
  7. {$R *.RES}
  8.  
  9. exports
  10.   GetExtensionVersion,
  11.   HttpExtensionProc,
  12.   TerminateExtension;
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.Run;
  17. end.
  18. |program %s;
  19.  
  20. {$APPTYPE %s}
  21.  
  22. uses
  23.   WebBroker,
  24.   CGIApp;
  25.  
  26. {$R *.RES}
  27.  
  28. begin
  29.   Application.Initialize;
  30.   Application.Run;
  31. end.
  32. |program %s;
  33.  
  34. {$APPTYPE %s}
  35.  
  36. uses
  37.   WebBroker,
  38.   CGIApp;
  39.  
  40. {$R *.RES}
  41.  
  42. begin
  43.   Application.Initialize;
  44.   Application.Run;
  45. end.
  46. |unit %s;
  47.  
  48. interface
  49.  
  50. uses
  51.   Windows, Messages, SysUtils, Classes, HTTPApp;
  52.  
  53. type
  54.   T%s = class(T%s)
  55.   private
  56.     { Private declarations }
  57.   public
  58.     { Public declarations }
  59.   end;
  60.  
  61. var
  62.   %1:s: T%1:s;
  63.  
  64. implementation
  65.  
  66. {$R *.DFM}
  67.  
  68. end.
  69. |
  70. |
  71.