text
stringlengths
14
6.51M
unit eeVstParameterManager; interface uses Classes, Contnrs, eeVstParameter; type TVstParameterManager = class private function GetPar(Index: integer): TVstParameter; function GetPublishedParameterCount: integer; protected type // TVstParameterHack class gives us access to the ...
program _Cholesky_; { René DEVICHI année scolaire 91-92, novembre ou décembre 1991 } { décomposition de Cholesky } uses Matrices; function pow(x:real;n:integer):real; var i:integer; a:real; begin a:=1.0; for i:=1 to abs(n) do a:=a*x; if n<0 then a:=1/a; pow:=a; end; procedure Cholesky(var A,L:matrice; ...
unit CadPrOpe; {*************************************************************************} {* *} {* Author: Alcindo Schleder *} {* Copyright: © 2006 by Alcindo Schleder. All rights reserved. ...
unit Model.Validator.Interfaces; interface uses Vcl.Graphics, System.Classes, System.SysUtils, Vcl.StdCtrls; type IModelValidator = interface; IModelValidatorTextConstraints = interface; IModelValidatorTextProperties = interface ['{F696D178-B8AC-4D38-B857-E24167E7E443}'] function DisplayError:...
unit SortedStringList; {$I Compiler.inc} interface uses BeRoStream; const MaxListSize=2147483647 div sizeof(pointer); EmptyStr:ansistring=''; type TPOINTER=pointer; TSortedStringListClass=class public Str:ansistring; Obj:TPOINTER; constructor Create; ...
unit DesignProp; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SimpleGraph, ExtCtrls, StdCtrls, Spin, ComCtrls; type TDesignerProperties = class(TForm) Grid: TGroupBox; ShowGrid: TCheckBox; Label1: TLabel; SnapToGrid: TCheckBox; Color...
unit uDJThread; interface uses Windows, Classes, Types, SysUtils, IOUtils, DateUtils, Generics.Collections, Variants, IdHTTP, uBaseThread, uTypes, uImageOps, uGlobal, uPassList, uHik86Sender, ActiveX; type TDJThread = class(TBaseThread) private FConfig: TDJThreadConfig; FVioList: TList<TPass>; ...
unit uTDBGridHelper; interface uses System.Types, System.Classes, Vcl.Grids, Vcl.DbGrids, Vcl.Graphics, Firedac.Comp.Client, Data.DB; type TDBGridHelper = class Helper for TDBGrid public procedure FormatCurrencyFields(); procedure OnUserTitleClick(const Column: TColumn); procedure ZebrarDBGri...
unit frmBankAdjustment; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, // Auto Generate frmUniTransactionEx, Menus, cxLookAndFeelPainters, cxGraphics, cxStyles, cxCustomData, cxFilter, cxData, cxDataStorage, cxEdit, DB, cxDBData, cxImageCombo...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.4.5-11, FILE=DEV093, CL...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.8.1-8, FILE=CONF166, CLASS=...
unit ee3AddOn.MidiAutomation.VstPar; interface uses Contnrs, Classes, VamLib.Types, DAEffect, DAEffectX, DAudioEffectX, ee3AddOn.VstMidi; type TMidiBinding = class public ParName : string; VstParIndex : integer; MidiCC : integer; end; TMidiAutomationController = class pr...
program ascii_t; { --== Tablica ASCII ==-- Copyright (c)by Jan T. Biernat Borland Turbo Pascal 7 - Kurs podstawowy = Tablica kodow ASCII (ang. American Standard Code for Information Interchange) stanowi zestaw kodow uzywanych do reprezentacji znakow (liter, cyfr, znakow specjalnych np. @, $, # it...
{ ****************************************************************** Types and constants - Error handling - Dynamic arrays ****************************************************************** The default real Type is DOUBLE (8-byte real). Other Types may be selected by defining the symbols: SINGLEREAL ...
{ by David Waitzman 2/25/85 for Gregg Lebovitz and CMU-ECE This module talks to the packet forwarder over the IB interface. } MODULE TFTP_RSC; IMPORT TFTP_DEC, GENERAL_1, IODECLARATIONS, GENERAL_4, HPIB_2, HPIB_3; { modules GENERAL_1, IODECLARATIONS, GENERAL_4, HPIB_2 & HPIB_3 are supplied by HP. } EXPORT CON...
unit ObjBlokUvazkaSpr; interface uses ObjBlok, Types, IniFiles, Global, PGraphics, Graphics, symbolHelper; type TUvazkaSprVertDir = (top = 0, bottom = 1); TLinkerTrain = class(TGraphBlok) Pos: TPoint; vertical_dir: TUvazkaSprVertDir; spr_cnt: Integer; constructor Create(index: Integer); pr...
unit uDMCategoria; interface uses System.SysUtils, System.Classes, uDMBase, Data.FMTBcd, Datasnap.DBClient, Datasnap.Provider, Data.DB, Data.SqlExpr, uModelCategoria, uDMConexao; type TDMCategoria = class(TDMBase) SQLConsultaidcategoria: TIntegerField; SQLConsultacodigo: TStringField; SQLConsultano...
PROGRAM QSort; {(c) ALFWARE B.Schubert} {$M 65520,0,655360} USES STRINGS; CONST keylang: INTEGER = 128; reverse: BOOLEAN = FALSE; buffer: INTEGER = 0; abspalte: INTEGER = 1; TYPE SCHLUESSEL = PCHAR; ZEIGER = ^SATZ; SATZ = RECORD link: ZEIGER; key: SCHL...
{$X+} program mos; (******************************************************************************** * * * Program: mos * * Programmer: Greg Fudala * * Soc. sec #: xxx-xx-xxxx * * Due date: April 24, 1989 * * System: Apple Mac II * * Compiler: VP 1.05 * * ...
unit uLucidityClock; interface uses Generics.Collections; type TClockEvent = procedure(Sender : TObject; ClockID : cardinal) of object; TClockListener = record ClockID : cardinal; TargetObject : TObject; TargetHandler : TClockEvent; ListenerID : string; end; TC...
{ * FmVIDemo.pas * * Main form for Version Information Component VIDemo demo program. * * $Rev$ * $Date$ * * Any copyright in this file is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ } unit FmVIDemo; {$UNDEF Supports_RTLNameSpaces} {$IFDEF CONDITIONALEXPRESSIONS} {$I...
unit ArqSqlRel; {*************************************************************************} {* *} {* Author: Alcindo Schleder *} {* Copyright: © 2003 by Alcindo Schleder. All rights reserved. ...
unit RedFoxBitmapWrapper; interface uses Graphics, Agg2D, RedFox2D; type TRedFoxBitmapWrapper = class private fWidth: integer; fHeight: integer; fRedFox2D: TRedFox2D; fBufferInterface: TAgg2D; public constructor Create; destructor Destroy; override; procedure Wrap(const aBitmap :...
unit AndroidStuff; interface function HasPermission(const Permission: string): Boolean; procedure SendSMS(const Number, Msg: string); implementation uses System.UITypes, FMX.Dialogs, FMX.Helpers.Android, Androidapi.Helpers, Androidapi.JNI.JavaTypes, Androidapi.JNI.GraphicsContentViewText,...
unit uRessource; interface uses XSuperObject, System.SyncObjs, System.Generics.Collections, IdContext, IdCustomHttpServer; type IRessource = interface ['{2EDFB8CB-E44B-4A96-9A00-20BDC6CE53E3}'] function GetRessourceName: string; function GET(const id: string; jsonResponse: ISuperObject): Boo...
unit c_horzsb; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, ExtCtrls, Graphics, crDefs, Types; type { TFrmHorzSb } TFrmHorzSb = class(TFrame) BtnLeft: TPanel; BtnRight: TPanel; ScDrag: TPanel; PnSlider: TPanel; procedure goDrag(Sen...
unit uDmConexao; interface uses System.SysUtils, System.Classes, ZAbstractConnection, inifiles, dialogs,ZConnection, forms, Aurelius.Drivers.Interfaces, Aurelius.Drivers.ZeosLib, Aurelius.Sql.MSSQL, Aurelius.Schema.MSSQL, Aurelius.Sql.MySQL, Aurelius.Schema.MySQL, Aurelius.Sql.Firebird, Aurelius....
unit InWindowDialog.InputDialog; interface uses Classes, Graphics, InWindowDialog.Prototypes; type TDialogResultCallback = reference to procedure(Text : string); TInputDialog = class(TPluginDialog) private fInputLabel: string; fDefaultValue: string; fInputText: string; fDialogResultHandler...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.7.1-5, FILE=IMDEFB30, C...
UNIT VectorADT; INTERFACE TYPE Vector = Pointer; PROCEDURE Add(VAR s: Vector; val: INTEGER); //AppendValue PROCEDURE SetElementAt(VAR s: Vector; pos: INTEGER; val: INTEGER); PROCEDURE GetElementAt(VAR s: Vector; pos: INTEGER; VAR val: INTEGER); PROCEDURE RemoveElementAt(VAR s: Vector; pos: INTEGER); FUNCTI...
unit ReceptionResponce; interface type /// <summary> /// A reception responce. It is a mutable object, everybody can change its fields. /// </summary> [MapperJSONNaming(JSONNameLowerCase)] TReceptionResponce = class(TObject) strict private const MESSAGE_KEY = 'message'; STATUS_KEY = 'status'; ...
unit eeSmoothedParameter; interface type TSmoothedParameter = class private fParValueSmoothed: single; fParValue: single; fSmoothingCoefficient: single; protected TargetValue:single; public constructor Create; destructor Destroy; override; procedure SetValue(Value:s...
unit uTFile; interface uses Classes, SysUtils, uSharedGlobals, Vcl.Dialogs; type TFile = class private class function DoReadAllText(const Path: string): string; //class function DoReadAllBytes(const Path: string): TBytes; class function DoWriteAllText(const Path: string; const text: string): string...
unit uFrustum; interface uses u3DTypes; const _planeLeft = 0; _planeRight = 1; _planeBottom = 2; _planeTop = 3; _planeNear = 4; _planeFar = 5; type // de 6 planes van het frustum: left/right/bottom/top/near/far TFrustumPlanes = array[_planeLeft.._planeFar] of TPlane; PFrustum = ^TFrustu...
unit WeatherCentral; interface uses Observer, Subject, System.Generics.Collections, System.SysUtils; type TWeatherCentral = class(TInterfacedObject, ISubject) private FTemperature: double; FHumidity : double; FPressure : double; NHeatIndex : double; FObservers: TList<IObserver>; public ...
unit ufrmFinalizaVenda; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, ufrmBase, Vcl.StdCtrls, Vcl.Touch.Keyboard, Vcl.ExtCtrls, Vcl.Imaging.pngimage, System.Actions, Vcl.ActnList, System.Generics.Collections,...
unit Test.PlugLib.AirControl; interface uses WatchTower, PlugLib.AirControl; type TAirControlTest = class(TWatchTowerTest) private BackgroundTaskCount : integer; AudioTaskCount : integer; GuiTaskCount : integer; procedure BackgroundTask; procedure AudioTask; procedure GuiT...
unit eeGuiStandardv2_MenuBuilder; interface {$SCOPEDENUMS ON} uses Menus, Controls, Classes, eeGlobals, eeTypes, eeMidiMap, eeGuiStandard_Types, eeEnumHelper; type TMenuItemSelectedCallback = reference to procedure(SelectedItemIndex : integer); TShowMenuCallback = reference to procedure(aMen...
unit unt_HoListView; interface uses unt_SortBitmap, unt_const, Windows, Messages, Classes, ComCtrls, CommCtrl, ExtCtrls; type THoListView = class(TListView) private F_SortBy: TSortBy; F_HeaderHandle: HWND; F_SortedColumn: integer; F_SortBitmap: TSortBitmap; function ValidHeaderHandle: B...
unit Classe.Funcionario; interface uses Classe.PessoaDado, System.SysUtils; type TFuncionario = class (TPessoaDado) private FFuncao: String; FSalario: Currency; procedure SetFuncao(const Value: String); procedure SetSalario(const Value: Currency); public property Funcao : String read FFuncao...
unit interpreter; {$ifdef FPC} {$mode delphi} {$endif} {$IFOPT D+} {$DEFINE DEBUG} {$ENDIF} interface uses Classes, SysUtils, Generics.Collections , token, expression, statement, environment, rterror; type { TInterpreter } TInterpreter = class(IExpressionVisitor, IStatementVisitor) private FEnvir: ...
unit VamScrollPanel; interface uses Types, Controls, Classes, StdCtrls, VamWinControl, VamScrollBar, VamDiv; type { Development of TVamScrollPanel has been temporaily halted. It's not working as well as I would like. child controls will be drawn overlapping/underneath the scroll bars and non-client a...
unit Underwater; interface uses Types, SysUtils, Classes, TypInfo, Graphics, Contnrs, Controls, Dialogs, Math, ScUtils, GR32, FunLabyUtils, FunLabyCoreConsts, FunLabyToolsConsts, Generics, GraphicsTools, MapTools, GR32_Transforms, GR32_Math, GR32_LowLevel, ViewTransformation, GExtUnderwaterTransfor...
PROGRAM PaintWithFunctions (input, output); uses crt; {Erick Nave 2-26-93 ICS 9:00 Program PaintWithFunctions (paintfnt.pas) is designed to let the customer enter the dimensions of a room to be painted, along with the # of doors and windows. The program then computes and prints out the surface area of t...
unit AudioEffect.Lofi; interface uses Lucidity.Dsp, eeDsp, AudioEffect; type TLofi = class private fSampleRate: single; fRateReduction: single; fBitReduction: single; fBitEmphasis: single; fMix: single; procedure SetRateReduction(const Value: single); procedure SetBitReduction(c...
unit LLVM.Imports.Core; interface //based on Core.h uses LLVM.Imports, LLVM.Imports.Types; {$MinEnumSize 4} type TLLVMOpcode = ( //* Terminator Instructions */ LLVMRet = 1, LLVMBr = 2, LLVMSwitch = 3, LLVMIndirectBr = 4, LLVMInvoke = 5, /...
{************************************************} { Simple SA2 Player. } { Copyright (c) 1995, Carl Eric Codere } { Montreal, Canada - December 1995. } { VERSION 1.50 } {************************************************} { See license....
unit UnderlinePen; interface uses Manager, Product; type TUnderlinePen = class(TProduct) private p_ULChar : string; public constructor Create(ulChar:string);overload; procedure Use(s:string); override; function CreateClone: TProduct; overrid...
unit Entidades; interface uses Generics.Collections, Aurelius.Mapping.Attributes, Aurelius.Types.Nullable, Aurelius.Types.Blob, Aurelius.Types.Proxy; type [Enumeration( TEnumMappingType.emString, 'AV,CH,BO,CC,CD,DC,TEF,DOC')] TTipoPagto = (Avista, Cheque, Boleto, CartaoCredido, CartaoDebito,DepositoC...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.5.3-12, FILE=IMDEFB27...
// ----------------------------------------------------------------------------- // 半透明 // // Copyright (c) Kuro. All Rights Reserved. // e-mail: info@haijin-boys.com // www: https://www.haijin-boys.com/ // ----------------------------------------------------------------------------- unit mAlphaBlend; interface u...
unit FF7_Compression; interface uses Windows, sggzip, Classes, SysUtils, Dialogs; Type TBinHeader = Packed Record Case Byte of 0: (Size1: Word; USize1: Word; Num: Word); 1: (USize2,Size2: DWord); end; TBinRec = Packed Record Size,USize,Num: Integer; Pos: Pointer; GZipPos: Pointer; ...
{ ******************************************************************************* * * * LGPL with linking exception (like Lazarus). See the file license.md, * * included in this distribution, for details about the copyright. ...
unit uCommon; interface uses SysUtils, IOUtils, Generics.Collections, IniFiles, DB, IdHttp, Classes, Types, uGlobal, uLogger, uTypes, uPassList; function Initialize: boolean; procedure Finalizat; implementation procedure SQLError(const SQL, Description: string); begin logger.Error(Description + #13#10 + SQL)...
unit soLucidityWaveOsc; interface {$INCLUDE Defines.inc} uses uBlitOsc, Math, soSineOsc, soSawSquareOsc, soDynamicWaveTableOsc, soDynamicWaveTableOsc.WaveGen; type TLucidityWaveOsc = class private fSampleRate: single; fPitchTwo: single; fPitchOne: single; fShape: ...
unit uSystemStrings; interface uses Uni, UTableBase, System.Generics.Collections; type TSystemString = class(TEntityBase) private // Felder private, durch property veröffentlichen fId: Integer; fStringKey: string; fTextDE: string; fTextEN: string; fTextFR: string; public property ...
unit NullableInt32s; interface uses SysUtils, NullableTypes; type NullableInt32 = record private const C_INIT_VALUE: string = 'I'; procedure SetIsNull(const AValue: boolean); var fValue: Int32; var fInitFlag: string; procedure SetValue(const AValue: Int32); function Ge...
{==============================================================================| | Project : Delphree - Synapse | 002.001.002 | |==============================================================================| | Content: MIME support procedures and functions ...
unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls; type { TForm1 } MyPoint=record x, y: Real; end; TForm1 = class(TForm) Button1: TButton; Edit1: TEdit; Edit2: TEdit; Edit3: TEdit; Edit4: TEdit; Edit5: TEd...
{******************************************************************************} { } { Part of speech } { ...
const N = 20; type arr = array [1..N] of integer; var a: arr; i, j: integer; key, res: integer; //Change the type if you need. procedure Sort(var dat: arr); var i, j, k: integer; begin for i := 1 to N-1 do for j := 1 to N-i do if dat[j] > dat[j+1] then begin k := d...
unit VamCustomTreeView; interface uses Classes, Controls, VamWinControl, VamTreeViewNode; type TNodeIOEvent = procedure(Sender : TObject; Node:TVamTreeViewNode; var NodeData : RawByteString); TNodeEvent = procedure(Sender:TObject; Node:TVamTreeViewNode) of object; TBooleanNodeEvent = procedure(Sender:TOb...
unit uJsonUtills; interface uses uModel, uModelList, System.Generics.Collections; type IGetEventListFromJson = interface ['{113BF1C8-B2DC-450F-8284-D698C2D348DC}'] procedure FillEventList(const aJSONContent: string; var aEventList: TModelList<TModel>); end; TJsonUtills = class(TInterfacedObjec...
unit uDMItem; interface uses System.SysUtils, System.Classes, uDMBase, Data.FMTBcd, Datasnap.DBClient, Datasnap.Provider, Data.DB, Data.SqlExpr, uDMConexao, uModelItem, uModelProduto, uControllerProduto; type TDMItem = class(TDMBase) CDSConsultaiditem: TIntegerField; CDSConsultacodigo: TStringField; ...
unit unitResourcePNG; interface uses Windows, Classes, SysUtils, graphics, unitResourceDetails, unitResourceGraphics; type //------------------------------------------------------------------------ // PNG resource details class TPngResourceDetails = class (TGraphicsResourceDetails) protected fun...
unit WatchTower; interface // NOTE: Testing terminology. // https://www.finalbuilder.com/resources/blogs/postid/697/introducing-dunitx // Using RTTI in D2010 // http://robstechcorner.blogspot.com.au/2009/09/using-attributes-and-tcustomattribute.html uses SysUtils; type TestAttribute = class(TCustomAttribute) ...
unit CadSqr; {*************************************************************************} {* *} {* Author: Alcindo Schleder *} {* Copyright: © 2006 by Alcindo Schleder. All rights reserved. ...
unit Exercicios.Form.Pesquisa; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Grids, DBGrids, DB, Exercicios.DataModule.Intf.Dm, ActnList; type TfrmPesquisa = class(TForm) dtsPesquisa: TDataSource; dbgPesquisa: TDBGrid; pnlCo...
unit WatchTower.Utils; interface function DoesPathUseCorrectSeperators(const Path : string):boolean; implementation uses SysUtils; function DoesPathUseCorrectSeperators(const Path : string):boolean; begin if (SysUtils.PathDelim = '\') then begin if Pos('/', Path) = 0 then exit(true) else exit...
unit uAppData; interface type TLogMode = (Single, Average, Max, Loop); TAppData = class private const DefaultPatID: string = 'ABC'; DefaultAvgRetry: integer = 3; DefaultLogFName: string = 'ADLog.json'; SettingsFileName: string = 'ADLog.ini'; public const private FSettings...
unit Oz.Pb.Gen; interface uses System.Classes, System.SysUtils, System.Math, Generics.Collections, Oz.Cocor.Utils, Oz.Cocor.Lib, Oz.Pb.Tab, Oz.Pb.Classes; const RepeatedCollection = 'TList<%s>'; MapCollection = 'TDictionary<%s, %s>'; type {$Region 'TGen: code generator for delphi'} TMapTypes = TList<PTy...
unit uMain; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.SvcMgr, Vcl.Dialogs, IniFiles, uMainThread, uLogger, FireDAC.Phys.OracleDef, FireDAC.Stan.Intf, FireDAC.Phys, FireDAC.Phys.Oracle, Vcl.ExtCtrls, IdBaseComponent, IdComponent, IdTCPCon...
unit uVioThread; interface uses System.SysUtils, System.Variants, System.Classes, uEntity, uGlobal, uDM, System.Generics.Collections, FireDAC.Comp.Client, uLogger, ActiveX, uCommon; type TVio = class SystemID: String; VehInfo: TVehInfo; VioRecord: TViotemp; Downloaded: boolean; DoneVehInfo:...
unit F7; interface uses bentukan; procedure jualolahan (tolah : tabOlah; var tiolah : tabiOlah; var tsimulasi: tabsimulasi; idx: integer); {I.S.: tolah, tiolah, tsimulasi,idx terdefinisi asumsi jika ada bahan dengan nama sama maka bahan dengan tanggal pembelian yang lebih lama/lebih duluan dibeli akan ditem...
{$I Directives.inc} unit UFrmDemo; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, AppUpdater{$IFDEF EnableXPMan}, XPMan{$ENDIF}; type TFrmDemo = class(TForm) Image: TImage; memoDescription: TMemo; BtnCheckMAJ: TBut...
(*----------------------------------------------------------------------------- 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 AggRendererMarkers; //////////////////////////////////////////////////////////////////////////////// // // // Anti-Grain Geometry (modernized Pascal fork, aka 'AggPasMod') // // Maintained by Christian-W. Budde (Christian@s...
unit MusicMenuIterator; interface uses System.SysUtils, MenuItem, IteratorInterface; type TAlbumItemArray = array of TMenuItem; TMusicAlbumIterator = class(TInterfacedObject, IIterator) private items : TAlbumItemArray; pos : Integer; public function Next : TMenuItem; function HasNext : boo...
{***********************************************************************} { DWM API import } { for Delphi & C++ Builder } { } { written by : ...
Program Hashing; {Erick Nave Program 4 - hash pascal DS&A II 1:00 Start 4-19-94 Last Update 5-4-94 Hashing implements the ordered list adt with hashing to find a spot in an array to store a key and a link field in order to implement a linked list for traversals in order. Blank positions in the array ...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.3.7.3-4, FILE=LEV1F35...
unit uTiketmasterApi; interface (* > Documentation https://developer.ticketmaster.com/products-and-docs/apis/discovery-api/v2/ > Get a list of all events in the United States: https://app.ticketmaster.com/discovery/v2/events.json?countryCode=US&apikey={apikey} > Search for events sourced by Universe in th...
unit About; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls; type { TAboutBox } TAboutBox = class(TForm) AgreementBox: TCheckBox; Button1: TButton; GroupBox1: TGroupBox; GroupBox2: TGroupBox; GroupBox3: TGroupBox; ...
unit DX7.Voice; interface uses SysUtils, DX7.Config, FS1R.Params, DX7.Op, DX7.PitchEnv; type TDX7Voice=class strict private frequency:double; velocity:double; Params:PVoiceParams{PParams}; aftertouch :integer; ModWheel :integer; PitchBend :double; LevelScaling:integer; pub...
unit DialogConsts; interface uses Windows, Classes, SysUTils; const BUTTON_ID = $80; EDIT_ID = $81; STATIC_ID = $82; LISTBOX_ID = $83; SCROLLBAR_ID = $84; COMBOBOX_ID = $85; type TSZOrID = record isID : Boolean; sz : string; id : Integer; end; TDlgTe...
{$A+,B-,D+,E-,F-,G+,I-,L+,N-,O-,P-,Q-,R-,S+,T-,V+,X+,Y+} {$M 16384,0,655360} Uses Dos, Crt, Strings; Const MaxPatterns = 255; MaxInstruments = 128; MaxSamples = 16; MaxNote = 96; SizeOfFileBuffer = $2000; TempFileName = '~temp~.bak'; Type XMHeader = RECO...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.8.3.7-2, FILE=CONF173, CLAS...
unit RequestStorageInterface; interface uses System.JSON, System.Generics.Collections; type IRequestStorage<T: Class, constructor> = interface(IInvokable) ['{71A75CE0-EA76-458E-BD6C-B50F921FAB24}'] /// <summary>Save the object and return an id by which it can be accessed later.</summary> function Sa...
unit uThreadTarefa2Laco2; interface uses System.Classes, ComCtrls; type TThreadTarefa2Laco2 = class(TThread) Fbarra:TProgressBar; FposIni:integer; FposFin:integer; FposAtual:integer; public property barra:TProgressBar read Fbarra write Fbarra; property posIni:integer read FposIni write FposIni;...
unit NodeLst; interface uses SysUtils; type TNode = class private FIndex: Integer; //Node index FOwner: TNode; //Link to owner node FPrev: TNode; //Link to previous node FNext: TNode; //Link to next node protected FAssignableClass: TClass; procedure AssignError(Source: TNode); ...
{ *********************************************************** } { * ksTools Library * } { * Copyright (c) Sergey Kasandrov 1997, 2010 * } { * ----------------------------------------- * } { * http://sergworks.wordpress.com/kstools * } ...
{ ******************************************************************************* * * * LGPL with linking exception (like Lazarus). See the file license.md, * * included in this distribution, for details about the copyright. ...
unit frmShipping; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxNavigator, // Auto Generate frmUniMasterEx, Menus, cxLookAndFeelPainters, dxPSGlbl, dxPSUtl, dxPSEngn, dxPrnPg, dxBkgnd, dxWrap, dxPrnDev, dxPSCompsProvider, dxPSFillPatterns, ...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.6.2-2, FILE=CONF095, CLASS=...
unit Serial; interface uses Windows, SysUtils, StdCtrls, StrUtils, Classes, Controls, Forms, Dialogs, Graphics, Math, DateUtils, {$IFNDEF ISLIB} PTRegistry, {$ELSE} PLRegistry, {$ENDIF} PortList, Global; type {Define the processing thread} TMyProcessingThread = class(TThread) private FCallerThread : Ca...
unit Unit1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FireDAC.Phys.CDataRSSDef, System.Rtti, FMX.Grid.Style, FMX.Edit, FMX.StdCtrls, FMX.ScrollBox, FMX.Grid, FireDAC.Stan.Intf, FireDA...
unit uDialogPolicySetting; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, dxDialogBase, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxSkinsCore, dxSkinBlack, dxSkinBlue, dxSkinBlueprint,...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { TEST 6.9.5-2, FILE=DEV252, CLA...
unit Lucidity.Interfaces; interface uses eeSampleFloat, uConstants, Lucidity.Enums, VamSampleDisplayBackBuffer, VamSamplePeakBuffer, Lucidity.Types, VamGuiControlInterfaces, LucidityModConnections, uSampleZeroCrossings; type // TODO: Delete IVoiceController. IVoiceController = interface(IInterf...
{ Pascal Validation Suite Version 5.7 } { } { (C) Copyright 1982, British Standards Institution } { } { PRETEST 6.4.3.3-10, FILE=ERR02...