text
stringlengths
14
6.51M
PROGRAM assignment1_3; CONST MAX_NAME_LENGTH = 9; TYPE nameString = PACKED ARRAY [0..MAX_NAME_LENGTH] OF char; presidentRec = RECORD id: integer; fname : nameString; lname : nameString; END; VAR presidentCount : integer = 0; presidents : ARRAY [0..19] OF presidentRe...
(* @abstract(Prise en charge des Images au format PCX ZSoft PaintBrush) Spécifications : @br @unorderedList( @item(Méthode de compression : Aucune, RLE) @item(Nombre de couleurs : 1, 2, 4, 8 bits format RGB, 24 bits ou 32 bits RGB(A) @item(Supporte plusieurs images : Non, une seule ...
unit WSClient; {******************************************************************************* Project link : https://https://github.com/gilmarcarvalho/DemoRESTBase64 Created In : 2019-09-04 13:18:10 Created By : Gilmar Alves de Carvalho - (linkedin.com/in/gilmar-carvalho) ****************...
{********************************************************} { } { Zeos Database Objects } { DB2 Transaction component } { } { Copyright (c...
unit MeasureThread; // ================================================================== // Compute waveform measurements from signal records in WCP data file // ================================================================== // 13.04.21 // 17.08.21 .. Peak-peak peak measurement option added // 09.03.22 .. Latency ...
UNIT XPrintIO; INTERFACE CONST MaxCh = 25; TYPE PositionsCh = SET OF 1..MaxCh; FUNCTION TransfCh(VAR Ch: CHAR): CHAR; FUNCTION CombForPrint(VAR Ch: CHAR): SET OF PositionsCh; IMPLEMENTATION FUNCTION TransfCh(VAR Ch: CHAR): CHAR; BEGIN TransfCh := Ch; CASE Ch OF 'a': TransfCh := 'A'; 'b': TransfC...
{$include kode.inc} unit fx_cutter; { slice -------- beat ---------------- buffer ---------------------------------------------------------------- :.......:.......|XXXXXoo:ooooooo|ooooooo:.......|.......:....... ------------------------ cut ------ ...
{******************************************************************************} { CnPack For Delphi/C++Builder } { 中国人自己的开放源码第三方开发包 } { (C)Copyright 2001-2006 CnPack 开发组 } { ...
{ this file is part of Ares Aresgalaxy ( http://aresgalaxy.sourceforge.net ) 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 2 of the License, or (at your option) any later v...
{************************************************************************************** * Copyright (c) * All rights reserved. * * FileName: * * History: * ------------------------------------------------------------ * 2009/08/20 modified * *****************************************************************...
unit PWInfoWellAltitudeFrame; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ActnList, ExtCtrls, ComCtrls, Ex_Grid, Well, Altitude; type TfrmAltitudesWell = class(TFrame) Panel1: TPanel; actnLst: TActionList; actnAddAltitude: ...
unit uframefactory; {$mode objfpc}{$H+} interface uses Classes, SysUtils, uframe, uModbus; type { TFrameFactory } TFrameFactory = class private class function GetStandartFrame(const aSlaveId, aFunctionCode: byte; const aStart, aRegCount: word; const aTimeout: dword): IFrame; public cla...
{ ******************************************************************************* Title: T2TiPDV Description: Status Operacional do SAT. The MIT License Copyright: Copyright (C) 2015 T2Ti.COM Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation fi...
unit FHIR.Support.Xml; { Copyright (c) 2001-2013, Kestral Computing Pty Ltd (http://www.kestral.com.au) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the...
unit HTMLEvent; interface uses Windows, Messages, SysUtils, Variants, Classes, OleCtrls, SHDocVw, MSHTML, ActiveX; type TObjectProcedure = procedure of object; TEventObject = class(TInterfacedObject, IDispatch) private FOnEvent: TObjectProcedure; protected function GetTypeInfoCount(out Count: Int...
unit eGenre; interface uses API_ORM, eCommon; type TGenre = class(TEntity) private FName: string; public class function GetStructure: TSructure; override; published property Name: string read FName write FName; end; TGenreList = TEntityList<TGenre>; TGenreRel = class(TEntity) privat...
unit PLAT_LawRuleFactory; interface uses sysutils, contnrs, Dialogs, Classes, dbclient, httpapp, PLAT_LawRuleDBManager, PLAT_LawRuleInterface, PLAT_LawRuleClass,HTTPProd; type TLawRuleFactory = class private FDBManager: ILawRuleDbManager; FCurrent: ILawRule; FClientDataset: TClientDataset; ...
unit VectorU; interface uses Classes; Type TVector = class(TObject) private FList: TList; function GetValues(Idx: Integer): Double; procedure SetValues(Idx: Integer; const Value: Double); function GetCount: Integer; public Constructor Create; Destructor D...
program cepack; //command line tool to compress not often used files in CE (32-bit tutorial, trainermaker files, driver files, dbvm, etc...) //compress: -c infile outfile //decompress: -x infile outfile //use the packfiles.bat file to autocompress the files before building the setup {$mode objfpc}{$H+} uses {...
unit CatMsg; { Catarinka TCatMsg - For handling WM_COPYDATA messages Copyright (c) 2015-2016 Felipe Daragon License: 3-clause BSD See https://github.com/felipedaragon/catarinka/ for details } interface {$I Catarinka.inc} uses {$IFDEF DXE2_OR_UP} System.Classes, Winapi.Windows, Winapi.Messages, System.SysU...
unit uRandomInfo; ////////////////////////////////////////////////// //#{30-150} :随机生成数字X: 30<=X<=150 //${3-5}: 随机生成字母n个字母: 3<=n<=5 //注: #{, ${中间不能有空格 //例子: jxdTerry#{4-10}@${3-4}.${2-3} // 生成类似: jxdTerry8@sic.xo ///////////////////////////////////////////////// interface uses Classes, uStringHandle, SysUtils;...
unit MainForm; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, chmreader, chm_doc, chmsitemap; type { TFormMain } TFormMain = class(TForm) ButtonTestIndex: TButton; ButtonTestTOC: TButton; ButtonTestListin...
{----------------------------------------------------------------------------- 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 USnake; interface uses ExtCtrls, Graphics, Types; type PElement = ^TElement; TElement = record X: Integer; Y: Integer; Color: TColor; Prev: PElement; Next: PElement; end; TMap = array of array of Byte; TPole = object Image: TImage; Width: Integer; Height: Integer; ...
unit TelaConfigAdminstrativa_p; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, DBCtrls, ExtDlgs, FMTBcd, DB, SqlExpr, jpeg, Provider, DBClient; type TTelaConfigAdministrativa = class(TForm) PanelBotoes: TPanel; BitBtnInc...
unit zone; interface USES Windows, Graphics, SysUtils, DeMPAK, IniFiles, ZoneList, GraphicEx, General_Res; TYPE TDZone = CLASS PRIVATE _BaseZonePath : STRING; FZone: TZone; FZoneId: Integer; FScale: Integer; FHeightMap: TBitmap; Fsector_dat: TIniFile; function GetHeightMap: TBitmap; PROTEC...
object Form1: TForm1 Left = 258 Top = 116 BorderStyle = bsDialog Caption = 'Form1' ClientHeight = 99 ClientWidth = 381 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] OldCreateOrder = False OnCreate = Fo...
{ This is a small hunk of string processing crap License: wtfpl (See 'copying' file or the Internet) } {$mode objfpc}{$h+} unit kUtils; interface uses classes, sysUtils; type kKeyValue = record key, value: string; end; kStrings = array of string; kKeyValues = array of kKeyValue...
unit frmpointerrescanconnectdialogunit; {$mode delphi} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls, resolve, Sockets, betterControls; type { TfrmPointerrescanConnectDialog } TfrmPointerrescanConnectDialog = class(TForm) btnCancel: T...
unit Pattern.ConcreteVisitorSenioridade; interface uses Pattern.Visitor, Pattern.ConcreteElementProgramador, Pattern.ConcreteElementGerente; type { Concrete Visitor } TSenioridade = class(TInterfacedObject, IVisitor) // Método que será invocado quando o objeto do parâmetro for da classe TOperario proc...
{****************************************************************************************************************************} { } { XML Data B...
{$J+} {Writable constants} unit Extblhnt; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, Forms, Dialogs, OvcBase, OvcTCmmn, OvcTable, StdCtrls, ExtCtrls; type TForm1 = class(TForm) OvcTable: TOvcTable; OvcController1: TOvcController; Timer: TTimer; Panel1: ...
unit tOrclSql; interface Uses tSQLCls,DBTables,Classes,Forms,DB; const sqlSuccess=0; sqlDBOpen=1; Type TOracleSQL=class(TSQL) public constructor Create(dsn,uid,pwd:string); {Virtual Functions} function CurrentDate:String;override; function CurrentDateTime:String;override; function...
unit CancelSalesFRMUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, cxControls, cxContainer, cxEdit, cxTextEdit, cxDBEdit, cxMaskEdit, cxSpinEdit, Spin, ComCtrls, cxCurrencyEdit, math; type TCancelSalesForm = class(TForm) BitBtnOk...
unit Inpulse.SIP.Models.Resgistrar; interface type TRegistrar = class private fSIP_VOLUME_AUTOMATICO: String; fASTERISK_PROXY: String; fASTERISK_PORTA: String; fASTERISK_SERVER: String; fSIP_EMITE_BIP: String; fASTERISK_USERID: String; fASTERISK_LOGIN: String; fASTERISK_SENHA: Stri...
//Copyright 2009-2011 by Victor Derevyanko, dvpublic0@gmail.com //http://code.google.com/p/dvsrc/ //http://derevyanko.blogspot.com/2011/03/kill-word.html //{$Id: ProcessKiller.pas 34 2011-03-10 04:48:59Z dvpublic0@gmail.com $} unit ProcessKiller; interface uses Windows, SysUtils, Classes, tlhelp32, Messages; ...
unit eAudioTrack; interface uses API_ORM, eAudioFile, eCommon; type TTrack = class(TEntity) private FAudioFiles: TAudioFileList; FTitle: string; function GetAudioFiles: TAudioFileList; public class function GetStructure: TSructure; override; property AudioFiles: TAudioFileList read Ge...
(*******************************************************) (* *) (* Engine Paulovich DirectX *) (* Win32-DirectX API Unit *) (* *) (* Copyright (c) 20...
Program Pzim ; const l= 3; c= 3; type aa=array[1..l,1..c] of integer; bb=array[1..l,1..c] of integer; multm=array[1..l,1..c] of integer; //======================== procedure ler matriz ======================================== procedure ler(var a:aa; var b:bb); var i,j:integer; begin ...
unit uPersistencia; interface uses uAtributos, FireDAC.Comp.Client, DBCLient, System.Rtti, DB; type TPersistencia = class public class function Inserir(pObjeto: TObject; out sErro: string): Boolean; class function Atualizar(pObjeto: TObject; out sErro: string): Boolean; class function Excluir(pObjet...
unit controller.auth; {$mode delphi}{$H+} interface uses SysUtils, Classes, httpdefs, fpHTTP, controller.base, controller.auth.dto; type { TAuthController } (* auth controller handles generating / validating of tokens, as well as providing a means to "reverse lookup" for initial request ...
unit TestGnDictionary; interface uses SysUtils, TestFramework, uGnDictionary, uGnGenerics, uGnTestUtils; type TMyDict = TGnDictionary<Char, Cardinal>; TTest_GnDictionary = class(TTestCase) strict private FDict: TMyDict.IGnDictionarySpec; procedure Append3_Except; procedure Items1_Except; pub...
namespace Sugar.Test; interface uses Sugar, Sugar.IO, Sugar.TestFramework; type PathTest = public class (Testcase) private property FolderPath: String read Folder.UserLocal.Path; public method ChangeExtension; method Combine; method GetParentDirectory; method GetExtension; method...
{ ORM Brasil é um ORM simples e descomplicado para quem utiliza Delphi Copyright (c) 2016, Isaque Pinheiro All rights reserved. GNU Lesser General Public License Versão 3, 29 de junho de 2007 Copyright (C) 2007 Free S...
unit cmpColorSelector; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, GraphUtil, unitExGraphics; const HLSMAX =240; type TPaletteEntries = array of TPaletteEntry; TColorSelector = class(TCustomControl) private fPalette: HPalette; fPaletteEntries : TPaletteEnt...
unit TarantoolConsts; {$mode objfpc}{$H+} interface const IPROTO_CODE = $00; IPROTO_SYNC = $01; //replication keys (header) IPROTO_SERVER_ID = $02; IPROTO_LSN = $03; IPROTO_TIMESTAMP = $04; IPROTO_SCHEMA_ID = $05; IPROTO_SPACE_ID = $10; IPROTO_INDEX_ID = $11; IPROTO_LIMIT = $12; IPROTO_OFFSET ...
{******************************************************************************* Title: T2Ti ERP 3.0 Description: Model relacionado à tabela [PDV_TIPO_PAGAMENTO] The MIT Lic...
(*======================================================================* | unitNTHandles unit | | | | The contents of this file are subject to the Mozilla Public License | | Version 1.1 (the ...
unit EffectTab; interface uses Windows, Messages, SysUtils, Classes, Controls, Graphics, Dialogs; type TEffect=(TSoundFont,TDSP,TEgalizer,TVSTI,TVSTE); {>>SimpleButton} TSimpleButton = class(TCustomControl) private fCaption:String; fActived:Boolean; fColorActived:TColor; Pr...
{*_* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Author: François PIETTE Description: THttpAppSrv is a specialized THttpServer component to ease his use for writing application servers. Creation: Dec 20, 2003 Version: 8.48 EMail: francois.piette@o...
unit Generic1DArray; {$mode objfpc}{$H+} {$INTERFACES CORBA} interface uses Classes, SysUtils, NiceInterfaces ; type { TG1DArray } generic TG1DArray<T> = class public type TArray = array of T; IComparator = interface function Compare(const a, b: T): integer; end; public const ...
unit uFile; interface uses System.SysUtils, System.Classes, uInterface; type TFile = class(TInterfacedObject,IFileRead,IFileWrite) private FFileList: TStringList; FFileCreate: Boolean; FPath: string; FFileName: string; procedure Valid; function PathFull: string; public constr...
unit frmSignIn_u; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, pngimage, dmDrinks_u; type TfrmSignIn = class(TForm) btnHelp: TButton; imgTitle: TImage; pnlSignIn: TPanel; edtCompany: TLabeledEdit; edtPas...
{********************************************************** * Copyright (c) Zeljko Cvijanovic Teslic RS/BiH * www.zeljus.com * Created by: 30-8-15 19:28:32 ***********************************************************} unit AZCListView; {$mode objfpc}{$H+} {$modeswitch unicodestrings} {$namespace zeljus.com.lis...
unit main; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, ExtCtrls, ParseMath, Types; type { TForm1 } TForm1 = class(TForm) btnEvaluateSlow: TButton; EvaluateFaster: TButton; ediFunc: TEdit; ediX: TEdit; ediY: TEd...
unit Organization; interface uses BaseObjects, Classes, Registrator; type // статус организации TOrganizationStatus = class (TRegisteredIDObject) public constructor Create (ACollection: TIDObjects); override; end; TOrganizationStatuses = class (TRegisteredIDObjects) private function GetItems(Ind...
// The Game of Life program Life; const VideoBufOrigin = $A0000000; Width = 320; Height = 200; FieldSize = 100; type TVideoBuf = array [0..Height - 1, 0..Width - 1] of ShortInt; PVideoBuf = ^TVideoBuf; TField = array [1..FieldSize * FieldSize] of Boolean; var VideoBuf: PVi...
{----------------------------------------------------------------------------- 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....
program Lab7x3xd; {$R-} uses GraphABC, System.Windows.Forms, System.Drawing; // Constants const cMaxObjectSpaceSize : Word = 19; // +1 cMaxWorldSpaceSize : Word = 255; // +1 cMaxObjectPolygons : Word = 15; // +1 cMaxWorldPolygons : Word = 127; // +1 cPi ...
{ ******************************************************************************* Title: T2Ti ERP Description: Controller do lado Cliente relacionado à tabela [PRODUTO] The MIT License Copyright: Copyright (C) 2016 T2Ti.COM Permission is hereby granted, free of charge, to any person obtaining a copy of this software...
namespace Sugar.TestFramework; interface type TestRunner = public static class private method HandleException(Name: String; Ex: Exception): TestResult; {$IF COOPER} method ProcessMethod(Obj: Testcase; M: java.lang.reflect.&Method): TestResult; {$ELSEIF ECHOES} method ProcessMethod(...
unit SOLPreview; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SOLPreview01, Wwdbgrid, Wwdbigrd, ControlGridDisp, GridControl, Db, DBClient, wwclient, Menus, MConnect, stdctrls, ppReport; type TSOLPrevio = class(TComponent) private { Private declarations } ...
unit ListArtists; interface uses Generics.Collections, Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Grids, ExtCtrls, Artist, BaseForm, ArtistsController; type TfrmListArtists = class(TBaseForm) PanelTop: TPanel; BevelTop: TBevel; MainPa...
{*******************************************************} { } { ThreadSearchFile.pas { Copyright @2014/5/7 14:30:42 by 姜梁 { } { 功能描述:线程类,可以获取磁盘上所有的文件信息 { 函数说明:1.线程启动后, ListFileInfo取的信息 ...
{******************************************************************************* Title: T2Ti ERP Fenix Description: Service relacionado à tabela [PRODUTO_UNIDADE] The MIT Lic...
// Copyright 2018 The Casbin Authors. All Rights Reserved. // // 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.org/licenses/LICENSE-2.0 // // Unless required by a...
unit xxmStream; interface uses xxm, Classes; type TxxmOutputStream=class(TCustomMemoryStream) private FWriting:boolean; FContext:IXxmContext; protected procedure SetSize(const NewSize: Int64); override; public constructor Create(Context:IXxmContext); destructor Destroy; ove...
unit NetHttpClient; interface uses HttpClient, System.SysUtils; type TOwnNetHttpClient = class(TInterfacedObject, IHttpClient) public function GetPageByURL(URL: string): string; end; implementation uses System.Net.HttpClientComponent, System.Classes; { TOwnNetHttpClient } function TOwnNetHttpClient...
Unit AdvIntegerLists; { Copyright (c) 2001-2013, Kestral Computing Pty Ltd (http://www.kestral.com.au) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the...
unit uTerminatedDemoThread; interface uses System.Classes , VCL.StdCtrls ; type TCountUntilTerminatedThread = class(TThread) private FLabel: TLabel; protected procedure Execute; override; public i: integer; constructor Create(aLabel: TLabel); end; implementation uses S...
{ *************************************************** PSPdisp (c) 2008 - 2015 Jochen Schleu control.pas - handling PSP buttons This software is licensed under the BSD license. See license.txt for details. *************************************************** } unit control; interface uses Windows, SysUti...
unit LuaThread; { This unit contains the class used to control the threads spawned by lua } {$mode delphi} interface uses {$ifdef darwin} macport, {$endif} {$ifdef windows} windows, comobj, {$endif} Classes, SysUtils,lua, lualib, lauxlib, LuaHandler, syncobjs, SyncObjs2; procedu...
unit _Report; ///////////////////////////////////////////////////////////////////// // // Hi-Files Version 2 // Copyright (c) 1997-2004 Dmitry Liman [2:461/79] // // http://hi-files.narod.ru // ///////////////////////////////////////////////////////////////////// interface uses Objects, MsgAPI, _CFG; ...
unit UGeneradorXML; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.ComCtrls, XMLHistoriaLaboral, PlanillasNomina, NSeguridadSocial, IdIPWatch, Xml.xmldom, Xml.XMLIntf, Xml.XMLDoc, Xml.Win.m...
unit MainViewModel; {$mode objfpc}{$H+} interface uses Classes, SysUtils, AbstractViewModel, Controls, AbstractModel, MainModel, entities, Graphics, fgl, vkcmobserver; type TBitmapList = specialize TFPGList<TBitmap>; { TUIData } TUIData = class private FButtonPictures: TBitmapList; FCommuniti...
unit Model.DelphiProjectFile; interface uses { NOTE: If you get compilation errors here because a unit cannot be found, then make sure you clone this repository recursively. For example: > git clone --recursive https://github.com/grijjy/GrijjyDeployMan } System.Generics.Collections, Neslib.Xml, Model....
unit DataGraph; {$mode objfpc}{$H+} interface uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Math, contnrs; type TGraphOption = (goLines, goData); TGraphOptions = set of TGraphOption; TDataSet = class(TObject) private FList: TList; FTag: IntPtr; FOnChange: TNotifyEve...
unit SimMEPSC; { ============================================================ WinWCP - SimmEPSC.pas Miniature excitatory postsynaptic current simulation (c) J. Dempster, University of Strathclyde 1999 ============================================================ 12/9/99 30/10/99 ... NewFile...
unit CoolForm; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls; type TCoolForm = class; TRegionType = class(TPersistent) public Fregion:hrgn; owner:TCoolForm; end; TCoolForm = class(TImage) private Fregion : TRegionType; FOrgRgn : PR...
unit SJ_AppExec; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, Forms, Dialogs; type EAppExec = class(Exception); EAppExecChDir = class(EAppExec); EAppExecWinExec = class(EAppExec); TPriorClass = (pcHigh, pcIdle, pcNormal, pcRealtime); TLangType = (ltFrench, ltEngl...
unit UFormServer; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, Vcl.Grids, Vcl.DBGrids, UServerMethods, UDSServerModuleCadastro, UDSServerModuleConfiguracao, UDSServerModuleMovimento, UDSSer...
(* @abstract(Prise en charge des Images au format BMP (Windows et Osx) en lecture et écriture.) @bold(Spécifications) : @br @unorderedList( @item(Méthode de compression : Aucune, encodage BitField, RLE, Huffman 1D) @item(Nombre de couleurs : 1,2,4,8,15,16,24,32,64 bits @item(Supporte plusie...
unit EushullyALF; interface uses Classes, SysUtils, lzss, Windows; const ALF_SIGNATURE_APPEND = 'S4AC'; ALF_SIGNATURE_DATA = 'S4IC'; ALF_FILE_ENTRY_NAME_LEN = 64; ALF_ARCHIVE_NAME_LEN = 256; CP_SHIFT_JIS = 932; type EALFType = (ALF_DATA, ALF_APPEND, ALF_UNK); TALFHeader = record ...
unit Options; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls, ExtCtrls; type TfrOptions = class(TForm) PageControl1: TPageControl; TabSheet1: TTabSheet; BrushProperty: TTabSheet; PenProperty: TTabSheet; TabSheet4: TT...
//***************************************************************************** // File : reals.pas // Author : Mazen NEIFER // Creation date : 2010-07-18 // Last modification date : 2010-07-18 // Licence : GPL // Bug report : mazen.neifer@supaero.or...
(* *************************************************************************** This example program checks if a bitmap file specified by the user via command line is a valid bitmap file You can run it like this: ./check <file(s)> ***************************************************************************...
(* @file UMenuPart.pas * @author Willi Schinmeyer * @date 2011-10-28 * * UMenuPart Unit * * Contains the TMenuPart type and functions/procedures operating on it * and the TMenuLine type. *) unit UMenuPart; interface uses UVector2i, UMenuLine; type (* @brief A part of a menu, enclosed in borders. ...
unit View.CadastroBanca; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxSkinsCore, dxSkinBlack, dxSkinBlue, dxSkinBlueprint, dxSkinCaramel, dxSk...
Unit Utils; interface uses Windows, SysUtils, Graphics, Math; const STACK_ARRAY_ALLOC_STEP = 4; LOG_FILE_NAME = 'Log/Level editor.log'; type TStack = class(TObject) // стэк. TODO: дописать сюда очередь private iCount: Integer; Data: array of Pointer; public constructor Create(); procedur...
unit TypeServiceTests; interface uses InfraCommonIntf, TestFramework; type TTypeServiceTests = class(TTestCase) private FPersonInfo: IClassInfo; FTypesCountOnSetup: integer; protected procedure SetUp; override; procedure TearDown; override; published procedure TestTyp...
unit Main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Pipes, StdCtrls, ExtCtrls, MadCodeHook, CommonPrintMonitor, PrinterIPC, IdIOHandler, IdIOHandlerStream, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, Registry; type TfmMain = class(TF...
unit SetIcons; interface uses Windows, Classes, Graphics, ShellAPI, SysUtils, ShlObj, pidl, SetInit; type EIconFileError = class(Exception); TFileType = (ftIconPath, ftFilePath, ftPIDL); TIconData = class(TObject) FilePoint: Pointer; FileType: TFileType; IconIndex: Integer; LIcon: HIcon; ...
unit uEnviarEmail; interface uses Classes, IdMessage, IdSMTP, IdText, SysUtils, IdAttachmentMemory, IdSSLOpenSSL, IdEMailAddress, IdGlobal, IdExplicitTLSClientServerBase, ShellApi, IdSASLLogin, IdSASLAnonymous, IdSASLDigest, IdSASLExternal, IdSASLOTP, IdSASLPlain, IdSASLSKey, IdUserPassProvider, IdSASL_CRAM_M...
unit RESTModel; interface uses SynCommons, mORMot; type TBanco = class(TSQLRecord) // TSQLRecord has already ID: integer primary key private fNome: RawUTF8; published /// ORM will create a NAME VARCHAR(80) column property Nome: RawUTF8 index 100 read fNome write fNome; end; function DataMode...
unit uMain; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Actions, System.StrUtils, FMX.Types, FMX.Controls, FMX.Graphics, FMX.Forms, FMX.Dialogs, FMX.TabControl, FMX.ActnList, FMX.Objects, FMX.StdCtrls, FMX.Controls.Presentation, FMX.Edit, FMX.Layouts...
unit unitDBControlsForReport; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, DBCtrls, Grids, DBGrids, DB, Mask, ADODB, ComCtrls, ExtCtrls,ComObj, ActiveX, FlashPlayerControl, Math; type TReport = class { ******************...
unit Files; {****************************************************************************} {*} Interface {*} {****************************************************************************} Uses SysUtils, WinProcs, lli; const SourceFormat = LLI_DISK_BMP; SourceCompress = LLI_DISK_COMPR...
unit UMensagem; interface uses SysUtils, Classes, DateUtils, Dialogs, FileCtrl, StrUtils, Forms, Windows; const QuebraLinha = #13#10; Espaco = ' '; type TMensagem = class(TObject) private fMensagens: TStringList; function getTexto: String; function getTextoSemQuebra: String; property Men...
(****************************************************************************** * PasVulkan * ****************************************************************************** * Version see PasVulkan.Framework.pas ...
unit unit_login_register; {Unit untuk melakukan login dan register} interface uses unit_csv, unit_type; {Fungsi untuk login yang mengeluarkan string nama pengunjung sekaligus mengecek apakah dia admin atau tidak} function login(var data : textfile; var tabel : tabel_data; var isAdmin : boolean) : string...