HTML App Develop Framework 套件 DelphiXE2 商業評估版V1 |
|
JL9168
中階會員 發表:133 回覆:223 積分:76 註冊:2011-09-29 發送簡訊給我 |
To All Delphi XE2 User:
附件檔案為"HTML App Develop Framework 套件 DelphiXE2 商業評估版V1" 解壓縮密碼為:Http://JoshDevStudio.twgg.org 為180天評估版,不可做為商業用途!! 編輯記錄
JL9168 重新編輯於 2012-07-30 06:12:44, 註解 無‧
|
JL9168
中階會員 發表:133 回覆:223 積分:76 註冊:2011-09-29 發送簡訊給我 |
DLL 程式樣版
library WebApp001; uses Windows, SysUtils, Classes, VCL.Dialogs, VCL.Forms, ISAPI2, UAdv_ISAPI_Utils; //ISAPI Main procedures !! procedure WebAppUIUpdateProc( WebSession:TAdv_WebSession ;InWebPage,InCtrl,InCtrlClass,InCtrlData:string); begin with WebSession do begin end;//with...end!! end; procedure WebAppInitProc(WebSession:TAdv_WebSession;InInitParams:string;DynamicOwner:TComponent); begin with WebSession do begin end;//with...end!! end; procedure WebAppReleaseProc(WebSession:TAdv_WebSession); begin with WebSession do begin end;//with...end!! end; procedure WebAjaxEventProc(WebSession:TAdv_WebSession;var RunWebMain:boolean); begin with WebSession do begin end;//with...end!! end; procedure WebAppMain(WebSession:TAdv_WebSession;Request:TPub_Request;Response:TPub_Response); begin if(Request.EventName = '')then begin Response.Write('Hello World !!'); end else begin end;//else...end!! end; function HttpExtensionProc(var ECB:TEXTENSION_CONTROL_BLOCK):DWORD; stdcall; begin result := DoHttpExtensionProc( Application,'EMPTY-PARAMS',WebAppMain ,WebAppInitProc,WebAppReleaseProc ,WebAjaxEventProc,WebAppUIUpdateProc ,ECB); end; Exports HttpExtensionProc; //==== DLL Main Procedure ==== procedure DllMain(reason:integer); begin case reason of DLL_PROCESS_ATTACH://Create begin //DLL loading... end; DLL_PROCESS_DETACH://Destroy begin //DLL unloading... end; end; end;//DllMain begin //--------------------------------------------------------------------------------- DllProc := @DllMain; DllMain(DLL_PROCESS_ATTACH); //--------------------------------------------------------------------------------- end. |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |