text
stringlengths
14
6.51M
{ Invokable implementation File for TPcPlayer which implements IPcPlayer } unit PcPlayerImpl; interface uses SysUtils, InvokeRegistry, Types, XSBuiltIns, PcPlayerIntf, UDmSvnPassWD; type { TPcPlayer } TPcPlayer = class(TInvokableClass, IPcPlayer) public function Hello: string; stdcall; ...
unit MovimientosDDM; interface uses System.SysUtils, System.Classes, _StandarDMod, System.Actions, Vcl.ActnList, Data.DB, Data.Win.ADODB; //const // RolesClase: array[0..2] of PChar = ('Ambos', 'Real', 'Virtual'); type TTipoReporte = (trDispercion, trNomina, trPrestamos); TRolClase = (rcAmbos,...
{****************************************************************** * 项目名称: * 单元名称:成长之路 * 单元作者: * 摘 要: * 备 注: *******************************************************************} program Mir2; {$I common.pas} //本任务的任务编号,每个任务对应不同的任务编号,这个不可以重复 const CurrentTaskID = 1002; //TASK_TYPE_MAIN 任务类型为主线 //TASK...
unit Lucidity.StateManager.PatchVersionUpdater; { This unit contains code to updote old Lucidity patch formats to the current patch format. The patch file XML is updated in place before being Lucidity attempts to load it. This way Lucidity only needs to work with the latest version of the patch file format. ...
unit PluginMsBuildvars; interface uses makestudio_TLB, system.classes, System.Win.Registry, system.SysUtils; var MakeStudio: IJApplication; FCanceled: Boolean = False; gMSBuildExe : string = ''; resourcestring struPluginName = 'MSBuild'; struPluginAuthor = 'Steffen Hornig (steffen.horn...
uses System; type Person = record name: String; end; function Greet(person: Person) begin WriteLn('hello, ' + person.name); end; let world := Person(name: 'World'); world.Greet();
unit uCamera; interface uses u3DTypes; const DefaultPosition : TVector = (X:0.0;Y:1.0;Z:0.0;); DefaultTarget : TVector = (X:0.0;Y:1.0;Z:1.0;); DefaultUpY : TVector = (X:0.0;Y:1.0;Z:0.0;); // minder gevoelig < 1 < gevoeliger DefaultSensitivityX = 0.1; DefaultSensitivityY = 0.5; // bewegings-snelh...
{ * Main form file for DelphiDabbler Clipboard Viewer Component demo program. * * $Rev$ * $Date$ * * Any copyright in this file is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ } unit FmDemo; {$UNDEF RTLNAMESPACES} {$IFDEF CONDITIONALEXPRESSIONS} {$IF CompilerVersion >= ...
unit TMSGBuilder; interface uses TMSGStruct, ClassConnection; function msgBuild(var Buf: TBuffer; var m: T_SMSG_AUTH_CHALLENGE): longint; overload; function msgBuild(var Buf: TBuffer; var m: T_SMSG_AUTH_RESPONSE): longint; overload; function msgBuild(var Buf: TBuffer; var m: T_SMSG_CHAR_ENUM): longint; overload;...
unit MySStringGrid; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Grids; type EWrongCol = class(EXception); //Wyjątek, gdy sortowanie grida i liczba kolumn do sortowania jest nie prawidłowa, np. jeśli jest to fixed column i sortByFixedCol jest false TMySStringGri...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { PRETEST 6.8.3.9-19, FILE=ERR75...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { PRETEST 6.4.6-11, FILE=ERR09P,...
{***************************************************************************} { TAdvMemo styler component } { for Delphi & C++Builder } { } { writte...
(*----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1...
unit QzGraphics; interface uses Windows, Classes, Graphics; // 色を扱うためのいろいろなデータ型 type TRGBQ = packed record function GetColor: TColor; procedure SetColor(col: TColor); property Color: TColor read GetColor write SetColor; case Integer of 0: (C: Cardinal); 1: (B, G, R, reserve: Byte); ...
unit AQConfigTest; interface uses DUnitX.TestFramework, AQConfig, Consumer; type [TestFixture] TAQConfigTest = class(TObject) public [Setup] procedure Setup; [TearDown] procedure TearDown; /// Test suit to check how a TAQConfig instance is converted to a josn. /// partition the inpu...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.2.1-2, FILE=IMPDEP16,...
segment Stack; {dynamic implementation of the Stack ADT} {Erick Nave DSAI 11-30-93} %include Stack {Using dynamic memory for the Stack ADT makes for easy coding since all that must be kept track of is a pointer to the first node which also cuts down on the automatic memory used. All operations on the stack ...
{**************************************************************************************************} { } { Project JEDI Code Library (JCL) } { ...
unit TrayTools; // Функции для работы с иконкой в трее {$B-,R-} interface uses Windows, ShellAPI, Messages, SysUtils; const WM_NOTIFYTRAYICON = WM_USER + 1111; procedure AddTrayIcon(AppHandle: Hwnd; Icon: HIcon; Hint: PChar); procedure DeleteTrayIcon(AppHandle: HWND); procedure SetNewTrayHint(AppHandle: HWND; ...
unit WSPCUnionMain; interface uses Classes, System.SysUtils, System.Generics.Collections, WSOCPRoduct, WSCommon, WSHtmlCommon, WSDBcommon, WCRestApi; type TWSPCUnion = class(TWSCommon) private FPRoducts: TWCProducts; FHTmlManager: TWSHtml; FLangID: Integer; procedure Re...
{$D+} UNIT Dict20; INTERFACE TYPE SCHLUESSEL = LONGINT; I_SCHLUESSEL = LONGINT; S_SCHLUESSEL = {$IFDEF DOS} STRING[80] {$ELSE} STRING {$ENDIF}; (* die allgemeinen Dict-Funktionen funktionieren auf (LONGINT,LONGINT) *) PROCEDURE Dict_Add (key, value: SCHLUESSEL); FUNCTION Dict_Find ...
unit RedFoxTextBuffer; interface uses Windows, Graphics, Types, Classes, RedFox, RedFoxColor, RedFoxImageBuffer; const // DrawTextOptions DT_TOP = Windows.DT_TOP; DT_LEFT = Windows.DT_LEFT; DT_CENTER = Windows.DT_CENTER; DT_RIGHT ...
unit EMF550P.Main; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Xml.XMLIntf, Vcl.StdCtrls, Xml.XMLDoc, System.Generics.Collections, HGM.Controls.VirtualTable, Vcl.Buttons, Vcl.ExtCtrls, Vcl.ComCtrls, Shell...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.1.5-13, FILE=DEV013, CL...
unit uHideStringFunc; interface function HideString(const MyString: string): string; stdcall; implementation function HideString(const MyString: string): string; stdcall; begin // manipulate the string to hide its original contents for var i := 1 to Length(MyString) do Result := Result + Chr(Random(26) + O...
PROGRAM BetterCopy; VAR source, destination: FILE OF BYTE; buffer: BYTE; result: INTEGER; BEGIN IF ParamCount <> 2 THEN BEGIN Writeln('Usage: BetterCopy <sourceFile> <destinationFile>'); END ELSE BEGIN AsSign(source, ParamStr(1)); AsSign(destination, ParamStr(2)); /...
unit FRMCarne; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons,FRMPrincipal,System.DateUtils; type TFormcarne = class(TForm) memCarne: TMemo; btnSalvar: TBitBtn; procedure...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.1-12, FILE=IMPDEP05, ...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.5.4-8, FILE=IMPDEP02,...
unit uTmri; interface uses Windows, Dialogs, System.Classes, SysUtils, Variants, SOAPHTTPClient, Httpapp, IdGlobal, IdHTTP, Provider, WinSock2, System.JSON, XMLDoc, XMLIntf, msxml, msxmldom, xmldom, forms, TmriOutNewAccess, uLogger, uJKDefine; type TTmriParam = record jkid, // 接口ID yh...
{ ****************************************************************** Eigenvalues of a real upper Hessenberg matrix by the QR method ****************************************************************** } unit uhqr; interface uses utypes, math, uminmax, umachar, uConstants; procedure Hqr(H: TMatrix; Lb...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.8.3.5-2, FILE=CONF171, CLAS...
unit serviceeditfrm; interface uses Servers, Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TServiceEditForm = class(TForm) Label1: TLabel; eServiceName: TEdit; Label2: TLabel; cbProtocol: TComboBox; bOk: TButton; bCancel:...
unit Client; interface uses ObjectsMappers, System.JSON; type /// <summary>An ADT for representing a client. /// A client is defined by its ip address and a token.</summary> [MapperJSONNaming(JSONNameLowerCase)] TClient = class(TObject) strict private const TOKEN_KEY = 'token'; IP_KEY = 'ip'; ...
unit uBaseFile; interface uses SysUtils, Classes, uDomainObject, uSharedGlobals; type PBaseFile = ^TBaseFile; TBaseFile = class(TDomainObject) private FPlatformType: TPlatformType; FOriginalFileName: string; FFoundFileName: string; FMD5Hash: string; FDownloadURL: string; ...
{ Copyright (c) 2018, Vencejo Software Distributed under the terms of the Modified BSD License The full license is distributed with this software } unit Week_test; interface uses SysUtils, DateUtils, Year, Week, {$IFDEF FPC} fpcunit, testregistry {$ELSE} TestFramework {$ENDIF}; type TWeekTest = cla...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.10-15, FILE=DEV257, CLA...
unit vetev; interface uses symbolHelper; type // po rozdeleni useku je na vetve je usek reprezentovan takto: // ukoncovaci element vetve = vyhybka TVetevEnd = record vyh: Integer; // pokud usek nema vyhybky -> vyh1 = -1, vyh2 = -1 (nastava u useku bez vyhybky a u koncovych vetvi) // referuje na index ...
unit Light; interface uses CommandInterface; type TLight = class procedure LightsUp; procedure LightsOff; end; implementation { TLight } procedure TLight.LightsUp; begin Writeln('Luz Acesa'); end; procedure TLight.LightsOff; begin Writeln('Luz Apagada'); end; end.
//--------------------------------------------------------------------------- { // 별개의 두 프로그램간의 메모리 공유 MMF (Memory Mapped File I/O) 방식을 이용한 두 프로그램간 메모리 공유 CreateFileMapping () : 공유메모리 생성 CloseHandle () : 공유메모리 제거 MapViewOfFile () : 공유메모리를 가르키는 포인터 얻기 얻어진 포인터를 이용, 해당 포인터가 가리키는 곳에 값을 읽거나 씀으로 처리 }...
unit udmInterBaseSales; interface uses System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Phys.IB, FireDAC.Phys.IBDef, FireDAC.FMXUI.Wait, FireDAC.Stan.P...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.9.3.1-9, FILE=IMPDEF10,...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.9.5-3, FILE=IMPDEP14, C...
{**************************************************************************************************} { } { Project JEDI Code Library (JCL) } { ...
unit SRC_1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls,FMX.Platform,FMX.PhoneDialer,FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls, FMX.Controls.Presentation, FMX.Colors, FMX.Edit, FMX.ScrollBox, FMX.Effects; type TForm...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.2.2-5, FILE=DEV170, C...
unit matjacobi; interface type vecteur=array[1..15] of real; matrice=array[1..15] of vecteur; var ordre:word; procedure entree(var m:matrice;l,c:word); procedure entree_symetrique(var m:matrice;n:word); procedure affiche(var m:matrice;l,c:word); procedure addition(a,b:matrice;var c:matrice;m,n:word); procedu...
{ FireMonkey Enhancements Library [FMXE] Copyright (c) 2014, LaKraven Studios Ltd, All Rights Reserved Original Source Location: https://github.com/LaKraven/FireMonkey-Enhancements License: - You may use this library as you see fit, including use within commercial applications. - You may modify this l...
{ The varaible Speed Delay class is very similar to a regular delay line class. Except the rate at which the read & write heads move though the delay buffer can be modified. This is conceptully similar to changing the tape speed in an old style tape delay effect. The Tape speed changes speed whilst the re...
unit Exercicios.DMConexao; interface uses SysUtils, Classes, DBXpress, FMTBcd, DB, SqlExpr, DBClient, Provider, Exercicios.DataModule.Intf.DM; type TDMConexao = class(TDataModule, IDm) AvaliacaoDB1: TSQLConnection; qryPesquisa: TSQLDataSet; dspPesquisa: TDataSetProvider; cdsPesquisa: TClientDat...
unit DGL_SQLTreeList; interface uses unt_ISQLTreeNode, SysUtils, Classes; {$I DGLCfg.inc_h} type TSQLTreeNodeAbst = class(TComponent, ISQLTreeNode) protected function L_GetNode(I_Index: Integer): ISQLTreeNode; virtual; abstract; function L_GetParentNode: ISQLTreeNode; virtual; abstract; functio...
unit LatLngHelper; interface uses System.Math, System.SysUtils; type TLatLng = record lat, lng: Double; end; TLatLngs = array of TLatLng; TLatLngHelper = record Helper for TLatLng private const X_PI = 3.14159265358979324 * 3000.0 / 180.0; function sgn(a: real): real; function atan...
unit RedFoxGraphicControl; interface uses Messages, Classes, Controls, RedFoxImageBuffer, Types, RedFoxContainer; type TRedFoxGraphicControl = class(TControl, IRedFoxVisibleControl) private fBackBuffer: TRedFoxImageBuffer; fOnMouseEnter: TNotifyEvent; fOnMouseLeave: TNotifyEvent; fHitTest: bool...
unit frmClosingYear; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, // Auto Generate frmUni, Menus, cxLookAndFeelPainters, cxGraphics, dxSkinsCore, dxSkinsDefaultPainters, DB, MemDS, DBAccess, Uni, cxControls, cxContainer, cxEdit, cxTextEdit,...
unit uAWSChatServiceUnit; interface uses System.Classes, System.SysUtils, FMX.Graphics; type TAWSChatService = class(TObject) public class function S3UpObject(const FilePath:string; const SavePath:string = ''; const ObjectPath:string = ''; const Ext:string = ''):string; overload; class fu...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.4.6-5, FILE=DEV101, CLA...
{==============================================================================| | Project : Delphree - Synapse | 002.001.002 | |==============================================================================| | Content: MIME message object ...
unit ufrUniDacConn; { 使用BDE方式连接数据库; 连接ArteryBase数据库 zhoubin 2016-11-22 } interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ufrBaseConn, ExtCtrls, StdCtrls, uThiType, uThiDB, Registry, uDesCodec; type TfrUniDacConn = class(TfrBaseConn) lblServer: TLabe...
unit UCL.HighDpiApp; interface {$IF CompilerVersion <= 30} function IsDpiAware: Boolean; function SetHighDpiAware: Boolean; {$IFEND} implementation {$IF CompilerVersion <= 30} uses SysUtils, Windows, UCL.ShellUIScaling; function SetHighDpiAware: Boolean; begin if CheckWin32Version(6, 3) then Result:=(S...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.2.5-9, FILE=DEV186, C...
unit DList; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ActnList, Menus, ExtCtrls, StdCtrls, ComCtrls, ExtDlgs, DIB; type TForm1 = class(TForm) Img: TImage; MainMenu1: TMainMenu; ActionList1: TActionList; eLoadImage: TAction; fSave: TAc...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.10-18, FILE=DEV260, CLA...
{* * Actividad22 * Este programa calcula el perimetro, el area de una circunferencia * y el volumen de una esfera con un radio dado * Autor: Jose Pena * Última modificación: 01 / 02 / 2013 *} program Actividad22; Const pi = 3.1416; // Valor de la constante pi var r : real; // radio de la circunferencia ...
{ ******************************************************************************* Copyright 2016-2020 Daniele Spinetti Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.or...
(*MLList: ------ Classes MLList and MLListIterator. ========================================================================*) UNIT MLListe; INTERFACE USES MLObj, MLColl; TYPE MLListNodePtr = ^MLListNode; MLListNode = RECORD value: MLObject; ...
unit XPLAT.Dialogs; interface uses Windows, Vcl.Dialogs, System.Classes; {$SCOPEDENUMS ON} {.$DEFINE ForceWinXPMode} type TxpMode = (WinXP, WinVista); TxpFileSaveDialog = class private FFileName: string; FFilterIndex: Integer; FDefaultExt: string; FTitle: string; FFilter: string; ...
unit UnitWorkWithFiles; interface uses Winapi.Windows, System.SysUtils, Vcl.Controls, Vcl.Dialogs, System.RegularExpressions; type TArrStr = Array of String; procedure OpenFileChess(); procedure SaveToFileAs(); implementation uses UnitMainForm, UnitSetupBoard, UnitReplayAndNotation, UnitTimer, UnitMyMessa...
unit Test.FmOpKernel; interface uses WvN.Console, System.TypInfo, System.diagnostics, fm_op_kernel, System.SysUtils, DUnitX.TestFramework; type [TestFixture] TFmOpKernelTest = class(TObject) Kernel:TFmOpKernel; public [Setup] procedure Setup; [TearDown] procedure TearDown; ...
unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls; type { TForm1 } TForm1 = class(TForm) Button1: TButton; Image1: TImage; Image10: TImage; Image2: TImage; Image3: TImage; Image4: TImage; Image5: TImage; I...
unit VamCompoundLabel; interface uses WinApi.Messages, Types, Controls, Classes, StdCtrls, Graphics, RedFox, RedFoxColor, VamWinControl, VamLabel; type TVamCompoundLabel = class(TVamWinControl) private fColor2: TColor; fColor1: TColor; fText2: string; fText1: string; fText2Align: TRed...
unit AudioPlugin.ProcessController; interface uses VamVst2.DAEffect, VamVst2.DAEffectX, VamLib.MoreTypes, AudioPlugin.PlugMain, AudioPlugin.RunTimeInfo, VamVst2.MidiEventInputBuffer; type TProcessController = class; TProcessControllerClass = class of TProcessController; TProcessController = class ...
{******************************************************************************* Title: T2Ti ERP Description: Classe de controle do movimento. The MIT License Copyright: Copyright (C) 2010 T2Ti.COM Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentat...
unit rAttributeRel; interface uses XSuperObject, uAttributeRel, uRessource; type TRessource_AttributeRel = class(TRessource, IRessource) private public function GetRessourceName: string; function GET(const id: string; jsonResponse: ISuperObject): Boolean; function POST(const id: string; con...
unit zexmlssutils; interface uses Windows, SysUtils, UITypes, Types, Classes, Grids, Math, Graphics, zexmlss, zsspxml, zesavecommon; /// <summary> /// Сохраняет страницу TZEXMLSS в поток в формате HTML /// </summary> function SaveXmlssToHtml(sheet: TZSheet; CodePageName: string = 'UTF-8'): string; implementati...
{ ******************************************************************************* Copyright (c) 2004-2010 by Edyard Tolmachev IMadering project http://imadering.com ICQ: 118648 E-mail: imadering@mail.ru ******************************************************************************* } unit ConfUnit;...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.3.2-2, FILE=DEV128, C...
unit Lucidity.KeyGroupManager; interface {$INCLUDE Defines.inc} uses eeAudioBufferUtils, soLevelMeter, VamLib.Types, VamLib.ZeroObject, VamLib.MoreTypes, soLucidityVoice, Lucidity.Interfaces, Lucidity.Types, Classes, Contnrs, uConstants, Lucidity.KeyGroup, eeGlobals, SyncObjs; type //=== Forward...
namespace RemObjects.Elements.System; interface type Tuple<T1> = public class({$IFNDEF NOGC}Object{$ELSE}UnmanagedObject{$ENDIF}) public constructor(aItem1: T1); property Item1: T1; readonly; method GetHashCode: Integer; override; method &Equals(arg1: Object): Boolean; override; end; Tuple<T...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.4.3.3-13, FILE=ERR05T, ...
unit DragHandle; interface uses Utils, BaseDock, VCL.Forms, VCL.Controls, VCL.Graphics, VCL.AppEvnts, Winapi.Windows, Winapi.Messages, System.Classes; type TDragState = (dsStart, dsMove, dsEnd); // 움직이는중, TDrageHandle = class(TCustomControl) private FOriginPoint: TPoint; // 처음 클릭한 포인트 F...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.3.8-7, FILE=LEV1F49, ...
unit uTableInfo; interface uses Classes, SysUtils, Windows; type TFieldInfo = class private FName: string; FDataType: string; FNote: string; public property Name: string read FName write FName; property DataType: string read FDataType write FDataType; property Note: string read FNote w...
unit VamLib.Win.Shell; interface uses ShlObj, ShellApi, Windows; function GetRegistryData(RootKey: HKEY; Key, Value: string): variant; function eeGetWindowText(WindowHandle:hwnd):string; function eeGetClassName(WindowHandle:hwnd):string; function eeGetTempPath:string; function eeGetWindowsVersion:string; funct...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.2.5-2, FILE=CONF161, CLAS...
unit eeMidiInputSmoother; interface uses Contnrs, Generics.Collections, B2.MovingAverageFilter; type TValueChangeMethod = procedure(CCIndex : integer; CCValue:single) of object; TSmoothy = class private fParIndex: integer; fTarget: single; fIsActive: boolean; procedure SetTarg...
unit Model.ProSu.Provider; interface uses Model.ProSu.Interfaces, System.Generics.Collections; function CreateProSuProviderClass: IProviderInterface; implementation type TProSuProvider = class (TInterfacedObject, IProviderInterface) private fSubscriberList: TList<ISubscriberInterface>; public procedu...
unit uImpostosDAO; interface uses dm, ZAbstractRODataset, ZAbstractDataset, ZDataset, System.SysUtils, Impostos; type TImpostosDAO = class private zquery: TZQuery; public procedure pesquisarImpostos; function inserirImpostos(imposto: TImpostos): boolean; end; impleme...
unit eeProcessController; interface {$INCLUDE Defines.inc} { SyncKeeper.pas provides a method for a plugin to send sample accurate midi to output buffer. This method needs to be reimplemented by this process controller. } uses eeCpuMonitor, eeVstMidiTypes, eeMidiEvents, eePlugin, //TODO: I t...
{ * Main form file for DelphiDabbler Message Dialogue Components demo program. * * $Rev$ * $Date$ * * Any copyright in this file is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ } unit FmPJMessageDialogDemo; {$UNDEF Supports_RTLNameSpaces} {$IFDEF CONDITIONALEXPRESSIONS} ...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.5.4-13, FILE=DEV154, ...
{----------------------------------------------------------------------------- Package: Symbolics -----------------------------------------------------------------------------} unit uFunctionsSymbolics; interface uses SysUtils, uMathIntf, uMath, Classes, uMathValues, Contnrs, uFunctions; type ISymbolicPattern = i...
PROGRAM FireEscape; CONST MAX_BUILDING_PLAN_WIDTH = 100; {максимальная ширина плана здания} MAX_BUILDING_PLAN_HEIGHT = 100; {максимальная высота плана здания} NO_WAVE = 0; FIRE_STEP = 2; {Период распространения огня (в шагах человека) } TYPE {Поле плана здания} MapFieldType = ( Empty, {пу...
unit uwiper; interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, Buttons; type { TFWiper } TFWiper = class(TForm) B_Fermer: TButton; B_Stop: TButton; B_Slow: TButton; B_Fast: TButton; GroupBox1: TGroupBox; L_Pin: TLabel; ...
{ UPoPS - UPlay Prince of Persia Sands of Time Settings Tool v 1.0 Author: vhanla This is a tool specially crafted to be used with the Ubisoft Prince of Persia The Sands of Time released as part of its 30th anniversary. Yaay! Since this old game doesn't support widescreen monitors and doesn't offer changing language ...
unit ChannelDataUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TChannelDataForm = class(TForm) ChannelDataMemo: TMemo; TopPanel: TPanel; ChanelEdit: TEdit; FilterEnable: TCheckBox; TestOutData: ...
unit uFileVersionInfo; interface uses Classes, Windows, SysUtils; Type TFileVersionInfo = Record FixedInfo: TVSFixedFileInfo; {版本信息} CompanyName: String; {公司名称} FileDescription: String; {说明} FileVersion: String; {文件版本} InternalName: String; {内部名称} LegalCopyright: String; {版权} LegalTrademarks: String;...
{ ****************************************************************** Multiple linear regression (Singular Value Decomposition) ****************************************************************** } unit usvdfit; interface uses utypes, usvd, umachar, uConstants; procedure SVDFit(X: TMatrix; Y: TVector...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.5.5-3, FILE=ERR16T, CLA...
// ************************************************************************ // // The types declared in this file were generated from data read from the // WSDL File described below: // WSDL : d:\aa.xml // >Import : d:\aa.xml>0 // Encoding : UTF-8 // Version : 1.0 // (2017/8/3 16:02:53 - - $Rev: 86412 $) // *****...