⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 compiledll.dpr

📁 酒店管理VB源码
💻 DPR
字号:
library CompileDll;

{ Important note about DLL memory management: ShareMem must be the
  first unit in your library's USES clause AND your project's (select
  Project-View Source) USES clause if your DLL exports any procedures or
  functions that pass strings as parameters or function results. This
  applies to all strings passed to and from your DLL--even those that
  are nested in records and classes. ShareMem is the interface unit to
  the BORLNDMM.DLL shared memory manager, which must be deployed along
  with your DLL. To avoid using BORLNDMM.DLL, pass string information
  using PChar or ShortString parameters. }

{%File '..\Extended.cpp'}
{%File '..\ComplexEx.h'}
{%File '..\ComplexEx.cpp'}
{%File '..\Extended.h'}
{%File '..\CCompile.cpp'}
{%File '..\CCompile.h'}
{%File '..\CCompileComplex.cpp'}
{%File '..\CCompileComplex.h'}

uses
  SysUtils,
  Classes,
  UnitDllFunctionTCompile in 'UnitDllFunctionTCompile.pas',
  UnitDllFunctionTCompileComplex in 'UnitDllFunctionTCompileComplex.pas',
  UnitDllFunctionCommon in 'UnitDllFunctionCommon.pas',
  Compile_Hss in 'Compile_Hss.pas',
  CompileComplex_Hss in 'CompileComplex_Hss.pas',
  Complex_Hss in 'Complex_Hss.pas';

{$R *.res}

exports
  //  数学函数动态编译器TCompile类 的dll函数封装
  cm_CreateTCompile,cm_CloseTCmHandle,cm_GetFunctionValue,cm_GetValue,
  cm_SetFunctionParameter,cm_Compile,cm_IfHaveUnDefineParameter,cm_SetText,
  cm_SetExteriorParameter,cm_SetExteriorArrayParameter,cm_RefreshExeAddressCodeInPointer,
  cm_Define,cm_DefineConst,cm_GetParameterAddress,cm_SetParameterN,cm_SetParameterA,
  cm_GetParameterValue,cm_GetUserParameterCount,cm_GetUserParameterList,
  cm_IfHaveParameter,cm_SetRandomizeT,cm_SetRandomizeI,
  cm_SetEnabledNote,cm_SetEnabledOptimizeDiv,cm_SetEnabledOptimizeStack,
  cm_SetEnabledOptimizeConst,cm_GetVersion,cm_GetErrorCode,
  cm_GetExeCodeLength,cm_GetExeParameterLength
  ,
  //  复学函数动态编译器TCompileComplex类 的dll函数封装
  cmcx_CreateTCompileComplex,cmcx_CloseTCmcxHandle,cmcx_GetFunctionValue,cmcx_GetValue,
  cmcx_SetFunctionParameter,cmcx_Compile,cmcx_IfHaveUnDefineParameter,cmcx_SetText,
  cmcx_SetExteriorParameter,cmcx_SetExteriorArrayParameter,cmcx_RefreshExeAddressCodeInPointer,
  cmcx_Define,cmcx_DefineConst,cmcx_GetParameterAddress,cmcx_SetParameterN,cmcx_SetParameterA,
  cmcx_GetParameterValue,cmcx_GetUserParameterCount,cmcx_GetUserParameterList,
  cmcx_IfHaveParameter,cmcx_SetRandomizeT,cmcx_SetRandomizeI,
  cmcx_SetEnabledNote,cmcx_SetEnabledOptimizeDiv,cmcx_SetEnabledOptimizeStack,
  cmcx_SetEnabledOptimizeConst,cmcx_GetVersion,cmcx_GetErrorCode,
  cmcx_GetExeCodeLength,cmcx_GetExeParameterLength
  ,
  // 数据与字符串转换
  cm_ExtendedToStr,cm_StrToExtended,cmcx_ComplexToStr,cmcx_StrToComplex
  ,
  // VB CCompile
  VB_cm_GetValue,VB_cm_GetFunctionValue,VB_cm_SetFunctionParameter,
  VB_cm_SetParameterN,VB_cm_SetParameterA,VB_cm_GetParameterValueN,
  VB_cm_GetParameterValueA
  ,
  // VB CCompileComplex
  VB_cmcx_GetValue,VB_cmcx_GetFunctionValue,VB_cmcx_SetFunctionParameter,
  VB_cmcx_SetParameterN,VB_cmcx_SetParameterA,VB_cmcx_GetParameterValueN,
  VB_cmcx_GetParameterValueA,
  VB_cmcx_ComplexToStr,VB_cmcx_StrToComplex
  ,
  VB_GetCPUCount,VB_SinCos,VB_Ceil,VB_ArcTan2
  ;


end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -