text
stringlengths
14
6.51M
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...
Unit DebugStr; // Контейнер всех отладочных строковых констант (Assert и пр.) во ВСЕМ пректе interface const // Unit - dsUserList caUnknownUserNodeType = 'Неизвестный тип ноды пользователей'; // Unit - bsConvert caAdapterLanguageCHanged = 'Стал приходить другой идентификатор языка из адаптера'; // Unit - sdsDo...
unit presentation_time_protocol; {$mode objfpc} {$H+} {$interfaces corba} interface uses Classes, Sysutils, ctypes, wayland_util, wayland_client_core, wayland_protocol; type Pwp_presentation = Pointer; Pwp_presentation_feedback = Pointer; const WP_PRESENTATION_ERROR_INVALID_TIMESTAMP = 0; // invalid value ...
unit flLabel; interface uses SysUtils, Classes, Controls, StdCtrls, flImageList, Graphics, ExtCtrls, Messages; type TflLabel = class(TLabel) private FImageList: TflImageList; FSmartTruncate: Boolean; FLetterDelay: Integer; FDelayDraw: Boolean; procedure SetImageList(const V...
unit FiveWebUtils_TLB; { This file contains pascal declarations imported from a type library. This file will be written during each import or refresh of the type library editor. Changes to this file will be discarded during the refresh process. } { FiveWebUtils Library } { Version 1.0 } interface uses Window...
unit GameData; {$mode objfpc}{$H+} interface + +uses + Classes, Forms, SysUtils, process, SynRegExpr, LCLPRoc, tappywords, util + {$IFDEF Linux} + ,oldlinux + {$ENDIF} + ; + +Type + TTappyGameData = object + SndFX : Boolean; + SndMusic: Boolean; + ModuleName : String; ...
{$MODE OBJFPC} {$INLINE ON} program IndependentSet; const InputFile = 'INDEP.INP'; OutputFile = 'INDEP.OUT'; maxN = Round(1E6); neginf = -maxN - 1; type TGraph = record f, fi, fo, fio: Integer; end; var s: AnsiString; stack: array[1..maxN] of Integer; graph: array[1..maxN] of TGraph; unitg: TGr...
//** Сцена выбора количества золотых монет. unit uSceneGold; interface uses uScene, Graphics, uGraph, uResFont; type //** Сцена выбора количества золотых монет. TSceneGold = class(TSceneCustom) private FBG, FF, FOkBtn, FCancelBtn: TBitmap; FLogo: TBitmap; FGraph: TGraph; FFont: TR...
unit spells; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, JvExControls, JvFormWallpaper, net, ExtCtrls, JvTabBar; type TSkill = record id: integer; max: integer; now: integer; name: string; descr: string; group: integer; end; type ...
unit nsErrorReport; // $Id: nsErrorReport.pas,v 1.2 2008/08/12 14:08:15 lulin Exp $ // $Log: nsErrorReport.pas,v $ // Revision 1.2 2008/08/12 14:08:15 lulin // - не падаем в режиме отладки. // // Revision 1.1 2007/09/20 13:00:59 oman // - new: Поддержка WER для Vista (cq26750) // interface uses SysUtils ; f...
{ <protocol_generator.pas> Copyright (C) <2018> <Andrew Haines> <andrewd207@aol.com> This source is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any...
{ Subroutine SST_R_PAS_SMENT_TYPE * * Process TYPE_STATEMENT syntax. This will also involve processing any * number of TYPE_SUBSTATEMENT syntaxes. These will be invoked explicitly * with the syntax subroutine SST_R_PAS_SYN_TYPE. } module sst_r_pas_SMENT_TYPE; define sst_r_pas_sment_type; %include 'sst_r_pas.i...
(* libltc - en+decode linear timecode Copyright (C) 2006-2012 Robin Gareus <robin@gareus.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the Licen...
unit Unt_Principal; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ComCtrls, Vcl.StdCtrls, Vcl.ExtDlgs, Vcl.CheckLst, Data.DB, Data.SqlExpr, Data.DBXFirebird; type /// <summar...
unit uDepartamentoEmailVO; interface uses System.SysUtils, uTableName, uKeyField, System.Generics.Collections; type [TableName('Departamento_Email')] TDepartamentoEmailVO = class private FIdDepartamento: Integer; FEmail: string; FId: Integer; procedure SetEmail(const Value: string); proce...
unit MakeGraph; {$MODE OBJFPC} uses Classes, SysUtils, StrUtils, uMinPrioQueue; type TCity = (NY = 0, LONDON = 1, PARIS = 2, MOSCOW = 3); TNode = record Index: Integer; Edges: Array of TNode; end; TSetOfNode = Set of Integer; TIntegerArray = Array of Integer; const TCities: Array[0..3] of TCit...
unit UIWrapper_LogSearchUnit; interface uses FMX.ListBox, FMX.Edit, FMX.Controls, DB, System.UITypes, Classes, DCL_intf, DBManager, StrUtils, SearchOption_Intf; type TUIWrapper_LogSearch = class(TObject) private FComboBox_LogTableName: TComboBox; FEdit_SearchKeyword: TClearingEdit; FButto...
{ 11/11/1999 9:11:55 AM > [sysdba on BILL] update: } { 11/11/1999 9:11:35 AM > [sysdba on BILL] checked out /To remove InfoPower references } unit ListSelect2; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, datamod, Grids, DBGrids, Db, ActnList, Buttons, St...
unit main; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, Grids, StdCtrls; type { TForm1 } TForm1 = class(TForm) Button1: TButton; StringGrid1: TStringGrid; procedure Button1Click(Sender: TObject); procedure FormCreate(Sender: TObject); private ...
unit QueueModule; {$MODE OBJFPC} interface type TQueue = class(TObject) private FFront, FRear, FSize, FCapacity: Integer; FQueue: Array of Integer; function IsFull(): Boolean; function IsEmpty(): Boolean; function GetPeek(): Integer; function GetSize(): Integer; public constructor C...
program distencworkercli; {$mode objfpc}{$H+} uses Classes, Crt, SysUtils, lNet, lnetbase, IniFiles, Process, DateUtils, StrUtils,NumCPULib; type TJob=Record ProjectID,JobID:String; FileName,FilePath:String; user,pass:string; WorkerID:String; Started,Ended,LastUpdate:TDateTime; EncCmd:string; EncProc...
unit Thread.ExtratoExpressas; interface uses System.Classes, Common.ENum, Common.Utils, Control.Bases, Control.Cadastro, Control.EntregadoresExpressas, Control.Entregas, Control.ExtraviosMultas, Control.Lancamentos, Control.Parametros, System.SysUtils, FireDAC.Comp.DataSet, System.DateUtils; type TTHead_Extr...
unit CommUnit; interface type IFeedback = interface(IInterface) ['{0FBE993E-1FC4-4E8A-B014-53A0D82B2DC9}'] procedure WriteMessage(const msg:string); procedure SetProgressMinMax(min,max:Integer); procedure SetPosition(position:Integer); end; TComm = class(TObject) private procedure Phase1;...
unit ArchManImplementation; interface uses ComObj, ActiveX, ArchMan_TLB, StdVcl, Classes, FileMan, IniFiles, Windows, SysUtils{, SyncObjs}; type TDDSArchiveManager = class(TAutoObject, IDDSArchiveManager) private FileManager:TFileManager; Ini:TIniFile; protected // IDDSArchiveManager proced...
unit Thread_201010_importar_pedidos_direct; interface uses System.Classes, Dialogs, Windows, Forms, SysUtils, Messages, Controls, System.DateUtils, System.StrUtils, Generics.Collections, Model.PlanilhaEntradaDIRECT, Control.Entregas, Control.PlanilhaEntradaDIRECT, Control.Sistema, FireDAC.Comp.Client, Common.ENum...
unit adpInstanceControl; interface uses Windows, Forms, SysUtils, Classes; type EInstanceControl = class(Exception); TMaxInstancesReachedEvent = procedure(Sender :TObject; const LastInstanceHandle :THandle) of object; TadpInstanceControl = class(TComponent) private fMappingName : ...
unit URectangle; interface uses UFigure, SysUtils, Graphics, ExtCtrls, StdCtrls, Windows, Math; type TRectangle = class(TFigure) private FSecondPoint: TPoint; public constructor Create(APoint: TPoint; AColor:TColor; ASecondPoint:TPoint); function Area:real; override; procedure Draw(Image: T...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit PE.Build.Common; interface uses System.Classes, PE.Common, PE.Image, NullStream; type // Parent class for any directory builders. // Override Build procedure and fill Stream with new dir data. TDirectoryBuilder = class protected FPE: TPEImage; public constructor Create...
unit AceDeb; interface uses classes, forms, stdctrls, controls; type TStatList = class(TComponent) private MyList: TListBox; MyForm: TForm; protected public constructor Create(Owner: TComponent); override; destructor Destroy; override; procedure SaveToLog(Sender: TObject); ...
unit k2String; { Библиотека "K-2" } { Автор: Люлин А.В. © } { Модуль: k2TagString - } { Начат: 16.01.2006 17:41 } { $Id: k2String.pas,v 1.5 2008/02/21 13:48:21 lulin Exp $ } // $Log: k2String.pas,v $ // Revision 1.5 2008/02/21 13:48:21 lulin // - cleanup. // // Revision 1.4 2007/12/05 12:35:08 lulin ...
unit vtPngImgListUtils; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "VT$ImgList" // Модуль: "w:/common/components/gui/Garant/VT/vtPngImgListUtils.pas" // Родные Delphi интерфейсы (.pas) // Generated from UML model, root eleme...
unit aePrimitiveShapes; interface uses aeConst, aeMaths, aeRenderable, System.Types, dglOpenGL, aeSceneNode, System.Generics.Collections, aeMesh, aeVectorBuffer, aeIndexBuffer, aeTypes; type TaePrimitiveShapeType = (AE_PRIMITIVESHAPE_TYPE_DEFAULT, AE_PRIMITIVESHAPE_TYPE_RAY); type TaePrimitiveShape = class(Ta...
unit TTSLDOCTable; interface uses Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf; type TTTSLDOCRecord = record PLenderNum: String[4]; PCifFlag: String[1]; PLoanNum: String[20]; PDocCount: Integer; PDescription: String[30]; PDateStamp: String[10]; End; TTTS...
unit FullScreenWindowMgr; interface uses Windows, DirectDraw, Classes; type TFullScreenWindowManager = class public constructor Create(hwndApp : HWND; const dd : IDirectDraw7; const FrontBuffer, BackBuffer : IDirectDrawSurface7); destructor Destroy; override; pu...
unit UPCOperation; interface uses Classes, URawBytes, UOperationResume, UAccountPreviousBlockInfo, UPCSafeBoxTransaction; type { TPCOperation } TPCOperation = Class Private Ftag: integer; Protected FPrevious_Signer_updated_block: Cardinal; FPrevious_Destination_updated_block : Cardinal; FP...
unit kwInclude; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "ScriptEngine" // Автор: Люлин А.В. // Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwInclude.pas" // Начат: 04.05.2011 22:02 // Родные Delphi интерфейсы (....
unit DeleteRouteResponseUnit; interface uses REST.Json.Types, System.Generics.Collections, SysUtils, GenericParametersUnit, DataObjectUnit, CommonTypesUnit; type TDeleteRouteResponse = class(TGenericParameters) private [JSONName('deleted')] FDeleted: boolean; [JSONName('errors')] FErrors: TL...
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...
{ 2020/07/05 0.01 Move tests from flcDatastucts unit. } { 2020/07/07 0.02 Tests for String and Object arrays. } {$INCLUDE ../../flcInclude.inc} {$INCLUDE flcTestInclude.inc} unit flcTestDataStructArrays; interface procedure Test; implementation uses SysUtils, flcStdTypes, flcDataStructArrays; pro...
unit udmImagemComprovante; interface uses System.SysUtils, System.Classes, udmPadrao, DBAccess, IBC, Data.DB, MemDS; type TdmImagemComprovante = class(TdmPadrao) qryManutencaoID_IMG: TIntegerField; qryManutencaoCGC: TStringField; qryManutencaoSERIE: TStringField; qryManutencaoN_FISCAL: TFloatFiel...
unit baraduke_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} m6809,m680x,namco_snd,main_engine,controls_engine,gfx_engine, rom_engine,pal_engine,misc_functions,sound_engine; function iniciar_baraduke:boolean; implementation const //Baraduke baraduke_rom:array[0..2] of tipo_roms=( ...
{ *************************************************************************** Copyright (c) 2016-2020 Kike Pérez Unit : Quick.Registry Description : Util registry info Author : Kike Pérez Version : 2.0 Created : 22/01/2021 Modified : 25/01/2021 This file is part of QuickLib: ht...
unit tmsUXlsProtect; {$INCLUDE ..\FLXCOMPILER.INC} {$INCLUDE ..\FLXCONFIG.INC} interface uses tmsUFlxMessages; type TEncryptionEngine = class; /// <summary> /// Holds an encryption engine and a password. Engine has to be created on demand (and is polymorphical) so we need to store password in another place. /...
unit daDataProviderFactory; // Модуль: "w:\common\components\rtl\Garant\DA\daDataProviderFactory.pas" // Стереотип: "SimpleClass" // Элемент модели: "TdaDataProviderFactory" MUID: (54F85EE102D1) {$Include w:\common\components\rtl\Garant\DA\daDefine.inc} interface uses l3IntfUses , l3ProtoObject , daInterfaces ,...
unit Parsers.Excel.Notes; interface uses Parsers.Excel, Parsers.Abstract, Parsers.Excel.Tools, SysUtils, Classes, GsDocument, StrUtils; type TExcelNoteRow = class(TExcelRowWrapper) public function GetCode: string; function GetNote: string; function GetTable(Code: string): Integer; function IsRowCode(Code...
unit uSHComModule; interface uses SysUtils, Classes,Messages,Forms,Windows,ExtCtrls, u_c_byte_buffer,WinSock; const wm_asynch_select= wm_User; const k_buffer_max= 4096; k_tcp_ip_chunk= 1500; MAXSOCKCOUNT = 100; const DisConnected = 0; Connecting = 1; Connected = 2; ...
{$INCLUDE ../../flcInclude.inc} {$INCLUDE ../flcCrypto.inc} unit flcTestEncodingASN1; interface {$IFDEF CRYPTO_TEST} procedure Test; {$ENDIF} implementation {$IFDEF CRYPTO_TEST} uses flcEncodingASN1; { } { Test ...
unit Mini; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, scStyledForm, scControls, scGPControls, dxGDIPlusClasses, scGPImages, scGPPagers, Vcl.ExtCtrls, scModernControls; const WM_MouseEnter = $B013; WM...
unit MainWindow; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, ComCtrls, StdCtrls, DirectoryServer; type TDirectoryWin = class(TForm) Image1: TImage; PageControl1: TPageControl; TabSheet1: TTabSheet; Label3: TLabel; DirectoryFullName: TEd...
{ DBAExplorer - Oracle Admin Management Tool Copyright (C) 2008 Alpaslan KILICKAYA This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at...
/// <summary> /// implements utility functions for file accesss /// This is an extract from u_dzFileUtils in dzlib http://blog.dummzeuch.de/dzlib/ </summary> unit GX_dzFileUtils; {$I GX_CondDefine.inc} {$IFDEF GX_VER200_up} {$DEFINE SUPPORTS_UNICODE_STRING} {$ENDIF} {$WARN UNIT_PLATFORM OFF} {$WARN SYMBO...
unit u_GeoCacherCache; interface uses Classes, SysUtils; const CFakeVersion = $2020; type TGeoCacherDbRootCache = class private FRootPath: string; function DoPatchProto(const AFileName: string): Cardinal; function DoPatchXml(const AFileName: string): Cardinal; procedure ...
{***********************************************************************} { TAdvCurve component } { for Delphi & C++Builder } { } { written by ...
unit fmuEJReportPrint; interface uses // VCL Controls, StdCtrls, ExtCtrls, ComCtrls, Classes, SysUtils, Graphics, // This untPages, untUtil, untDriver, Spin; type { TfmEKLZReportInRange } TfmEJReportPrint = class(TPage) lblDepartment: TLabel; lblStartDate: TLabel; dtpStartDate: TDateTimePick...
unit blitter_williams; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} main_engine,cpu_misc,m6809; type williams_blitter=class constructor create(xor_:byte;window_enable:boolean;clip_address:word); destructor free; public procedure reset; procedure blitter_w(dir,valor:byte); p...
unit fb2rtf_engine; interface uses MSXML2_TLB,Windows; type TRTFConverter = class Private XSLVar,DOM:IXMLDOMDocument2; ProcessorVar:IXSLProcessor; Function GetXSL:IXMLDOMDocument2; Procedure SetXSL(AXSL:IXMLDOMDocument2); Function GetProcessor:IXSLProcessor; Function ConvertDOM:String; P...
unit MathUtils; interface function Dist( x1, y1, x2, y2 : integer ) : integer; function min( a, b : integer ) : integer; function max( a, b : integer ) : integer; function minI64( a, b : int64) : int64; function maxI64( a, b : int64 ) : int64; function realmin( a, b : single ) : single; function realmax...
unit Unit_SelecaoDeFornecedores; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Mask, Vcl.Buttons, Vcl.ExtCtrls, Vcl.Grids; type Tfrm_SelecaoDeFornecedores = class(TForm) for_Panel1: T...
unit SDConsoleForm; interface uses Windows, Forms, BaseForm, Classes, Controls, StdCtrls, Sysutils, ExtCtrls, Dialogs, VirtualTrees, define_dealitem, define_dealmarket, define_datasrc, define_price, define_datetime, StockDataConsoleApp, StockDataConsoleTask, DealItemsTreeView, StockDayDataAccess, ComCtrls; ...
unit kwIn; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "ScriptEngine" // Автор: Люлин А.В. // Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwIn.pas" // Начат: 11.05.2011 20:14 // Родные Delphi интерфейсы (.pas) // Ge...
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...
unit UDMMaterialFornecedor; interface uses SysUtils, Classes, DB, DBTables, DBIProcs, Variants; type TDMMaterialFornecedor = class(TDataModule) tMaterialFornecedor: TTable; dsMaterialFornecedor: TDataSource; tMaterialFornecedorCodMaterial: TIntegerField; tMaterialFornecedorCodFornecedor: TInteger...
unit TestUEuropean; { Delphi DUnit Test Case ---------------------- This unit contains a skeleton test case class generated by the Test Case Wizard. Modify the generated code to correctly setup and call the methods from the unit being tested. } interface uses TestFramework, UEuropean, UBird; type //...
{| Unit: bseerr | Version: 1.00 | translated from file bseerr.H | Original translation: Peter Sawatzki (ps) | Contributing: | (fill in) | | change history: | Date: Ver: Author: | 11/23/93 1.00 ps original translation by ps } Unit BseErr; Interface {* This file includes the error codes for Base OS/2 ap...
unit ClassHash; interface uses Collection, Classes; type TCollection = Collection.TCollection; type TClassIdEntry = class public constructor Create(anId : integer; aName : string); destructor Destroy; override; private fId : integer; ...
unit Integrals_; interface uses Unit4; function IntRectR(F: TFunc2d; a,b: double; N: integer): TReal; overload; function IntRectM(F: TFunc2d; a,b: double; N: integer): TReal; function IntRectL(F: TFunc2d; a,b: double; N: integer): TReal; overload; function IntTrapz(F: TFunc2d; a,b: double; N: integer): TReal; ...
unit tfwDictionaryWordsPack; // Модуль: "w:\common\components\rtl\Garant\ScriptEngine\tfwDictionaryWordsPack.pas" // Стереотип: "ScriptKeywordsPack" // Элемент модели: "tfwDictionaryWordsPack" MUID: (55E727F40334) {$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc} interface {$If NOT Defined(NoScri...
/// Dynamic arrays based on JavaScript Array functionality. /// author: Tomasz Tyrakowski (t.tyrakowski@sol-system.pl) /// license: public domain unit DynArr; interface uses SysUtils, System.Generics.Collections, System.Generics.Defaults; type /// Raw array of values of type T. TRawArr<T> = array of T; //...
unit ext_global; interface const PCKT_TYPE = $01; PCKT_WRITE_TIME = $02; PCKT_READ_TIME = $03; PCKT_WRITE_DATA = $04; PCKT_CURRENT = $05; PCKT_STATE_ARCHIVE = $06; PCKT_GET_ARCHIVE = $07; PCKT_OPER = $09; PCKT_WRITE_BLOCK_DATA = $0B; PCKT_READ_BLOCK_DATA = $0C; PCKT_VERSION = $0D; PCKT_WRITE_R...
{ DBAExplorer - Oracle Admin Management Tool Copyright (C) 2008 Alpaslan KILICKAYA This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at...
unit MessagesForma; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DBGridEh, StdCtrls, Mask, DBCtrlsEh, ComCtrls, ToolWin, frxClass, frxDBSet, DB, FIBDataSet, pFIBDataSet, Menus, ActnList, GridsEh, ExtCtrls, Buttons, DBGridEhImpExp, FIBQuery, DBGridEhGrou...
unit IdHTTPWebsocketClient; interface uses IdHTTP, IdHashSHA1; type TIdHTTPWebsocketClient = class(TIdHTTP) private FWSResourceName: string; FHash: TIdHashSHA1; protected procedure InternalUpgradeToWebsocket(aRaiseException: Boolean; out aFailedReason: string); public procedu...
unit simpsons_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} nz80,konami,main_engine,controls_engine,gfx_engine,rom_engine, pal_engine,sound_engine,ym_2151,k052109,k053260,eepromser,timer_engine, k053251,k053246_k053247_k055673; function iniciar_simpsons:boolean; implementation const simp...
unit SortIndex; interface uses System.Generics.Collections, System.SysUtils; type TxnQuickSort = class type TGetter = reference to function(const aIndex: integer): string; TComparer = reference to function(const aLeft, aRight: string): integer; strict private fGetter: TGetter; fC...
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Contnrs, StdCtrls, ExtCtrls; type TValue = class Score: single; constructor Create(S: Single); end; TForm1 = class(TForm) Button1: TButton; Image1: TImage; Image2: TImage; ...
unit Dialogs.Controllers.Method.SaveDialogs; interface uses {$IF FireMonkeyVersion} FMX.Dialogs, {$ELSE} Vcl.Dialogs, {$ENDIF} Dialogs.Controllers.Method.Interfaces, System.Classes; type TSaveDialogs = class(TInterfacedObject, iDialogs, iDialogParams, iDialogFilter, iDialogOption) private FSaveDial...
unit MFichas.Model.Conexao.Interfaces; interface uses System.Generics.Collections, System.Bluetooth, ORMBR.Factory.Interfaces, FireDAC.Comp.Client; type iModelConexaoSQL = interface; iModelConexaoBluetooth = interface; iModelConexaoFactory = interface; iModelConexaoSQL = interface ['{4...
unit UserLoginDlg; {$I defines.inc} interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls, ActnList, Buttons, DBCtrlsEh, Mask, Grids, pngimage, System.Actions, PrjConst; {$IFDEF Scale4k} const WM_DPICHANGED = 736; // 0x02E0 {$ENDIF} type TUserLoginDi...
unit HistoryFrame; interface uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, Buttons, ExtCtrls; type TFrameHistory = class(TFrame) private fSplitter: TSplitter; procedure SetSplitter(value: TSplitter); { Private declarations } protected procedure Notification(aComponent:...
unit xStrUtils; interface uses Classes, SysUtils; type TCharSet = set of AnsiChar; function DelChars(const S: AnsiString; C: AnsiChar): AnsiString; function DelCharsEx(const S: AnsiString; Chars: TCharSet): AnsiString; function WordCount(const S: AnsiString; const WordDelims: TSysCharSet): Integer; fu...
unit ClasseCliente; interface uses System.Classes, Conexao.MySQL, Interfaces; type TClasseAmiga = class // Caso esteja na mesma Unit, as classes compartilham de objetos privados strict private // usado para encapsular dentro da mesma Unit com classes diferentes Teste : String; public procedure...
unit Unit1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, Androidapi.JNI.Location, Androidapi.JNIBridge, Androidapi.JNI.JavaTypes, Androidapi.JNI.Os, FMX.Layouts, FMX.ListBox, FMX.StdCtrls; type ...
unit tipoCombustivelDao; interface uses TipoCombustivel, DB, DM, IBQuery, IBDataBase, Classes; type T_TipoCombustivelDao = class(TObject) private F_Qr: TIBQuery; F_Lista: TList; public // Os tipos de combustível são fixos, portanto só atualizam...
unit TokyoScript.Main; { TokyoScript (c)2018 Execute SARL http://www.execute.Fr } interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, SynEditHighlighter, SynHighlighterPas, SynEdit, Vcl.StdCtrls, V...
unit Control.PlanilhaEntradaDIRECT; interface uses Model.PlanilhaEntradaDIRECT; type TPlanilhaEntradaDIRECTControl = class private FPlanilha: TPlanilhaEntradaDIRECT; public constructor Create(); destructor Destroy(); override; function GetPlanilha(sFile: String): boolean; prop...
unit vulgus_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} nz80,main_engine,controls_engine,ay_8910,gfx_engine,rom_engine,pal_engine, sound_engine,timer_engine; function iniciar_vulgus:boolean; implementation const vulgus_rom:array[0..4] of tipo_roms=( (n:'vulgus.002';l:$2000;p:0;crc:$...
unit Trade; interface uses Protocol, Kernel, Standards, CacheCommon; const TradeCenterPrice = 200; TradeCenterQuality = 40; const tidFacilityKind_TradeCenter = 'TradeCenter'; procedure RegisterTradeCenter( aClusterName, anId : string; aVisualClass : TVisualClassId; axSize, aySize : intege...
unit KM_Terrain; interface uses System.SysUtils, ExtAISharedInterface; type // Dummy class (in KP it store all terrain data, aswell terrain routines) TKMTerrain = class private fMapX: Word; fMapY: Word; public Passability: TBoolArr; Fertility: TBoolArr; constructor Create; proper...
unit InventoryDM; 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.VCLUI.Wait, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.In...
unit Abastecimento; interface uses Bomba; type TAbastecimento = class private FId: Integer; FQuantidade: Double; FValor: Double; FBomba: TBomba; function GetBomba: TBomba; function GetId: Integer; function GetQuantidade: Double; function GetValor: Double; ...
{*******************************************************} { Проект: Repository } { Модуль: uBaseSecurityService.pas } { Описание: Абстрактная базовая реализация ISecurityService } { Copyright (C) 2015 Боборыкин В.В. (bpost@yandex.ru) } { ...
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...
unit ufrmLapKartuStock; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, ufrmDefaultLaporan, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxBarBuiltInMenu, Vcl.Menus, cxContainer, cxEdit, cxS...
unit D_DateCalc; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, BottomBtnDlg, StdCtrls, Buttons, ExtCtrls, vtSpin, Mask, vtCombo, vtDateEdit, l3Date; type TDateCalcDlg = class(TBottomBtnDlg) Label3: TLabel; Label4: TLabel; Label1: TLabel; ...
unit streamable_component_list; interface uses classes,introspectionLib, streaming_class_lib; type TComponentClass=class of TComponent; TStreamableComponentList=class(TIntrospectedStreamingClass) private fResolved: boolean; fList: TStrings; fOwnsObjects: boolean; fUseNotifications: boolean; p...
unit SysVars; { 本单元包含系统全部的全局变量 } interface uses //自编模块 SysRecords,SysConsts, // Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls; var //----------------------------基本变量-------------------------------------------------------// gsMainD...
unit NewDisk; { Inno Setup Copyright (C) 1997-2005 Jordan Russell Portions by Martijn Laan For conditions of distribution and use, see LICENSE.TXT. New Disk form $jrsoftware: issrc/Projects/NewDisk.pas,v 1.34 2010/10/22 10:33:26 mlaan Exp $ } interface {$I VERSION.INC} uses Windows, SysUtils, Messag...
unit l3ControlFontService; // Модуль: "w:\common\components\rtl\Garant\L3\l3ControlFontService.pas" // Стереотип: "Service" // Элемент модели: "Tl3ControlFontService" MUID: (556F24A80035) {$Include w:\common\components\rtl\Garant\L3\l3Define.inc} interface {$If NOT Defined(NoVCL)} uses l3IntfUses , l3ProtoObject ...
{**************************************************************} { } { This is a part of Morphine v2.7 by Holy_Father && Ratter/29A } { } {*****************************************************...