├── Packages ├── Rio │ ├── Delphi │ │ ├── DOSCommandDD.res │ │ ├── DOSCommandDR.res │ │ ├── DOSCommandDR.dpk │ │ ├── DOSCommandDD.dpk │ │ ├── DOSCommandDelphi.groupproj │ │ ├── DOSCommandDD.dproj │ │ └── DOSCommandDR.dproj │ └── CBuilder │ │ ├── DOSCommandCD.res │ │ ├── DOSCommandCR.res │ │ ├── DOSCommandCD.cpp │ │ ├── DOSCommandCR.cpp │ │ └── DOSCommandCBuilder.groupproj ├── Tokyo │ ├── Delphi │ │ ├── DOSCommandDD.res │ │ ├── DOSCommandDR.res │ │ ├── DOSCommandDR.dpk │ │ ├── DOSCommandDD.dpk │ │ ├── DOSCommandDelphi.groupproj │ │ └── DOSCommandDD.dproj │ └── CBuilder │ │ ├── DOSCommandCD.res │ │ ├── DOSCommandCR.res │ │ ├── DOSCommandCD.cpp │ │ ├── DOSCommandCR.cpp │ │ └── DOSCommandCBuilder.groupproj ├── Berlin │ ├── CBuilder │ │ ├── DOSCommandCD.res │ │ ├── DOSCommandCR.res │ │ ├── DOSCommandCD.cpp │ │ ├── DOSCommandCR.cpp │ │ └── DOSCommandCBuilder.groupproj │ └── Delphi │ │ ├── DOSCommandDD.res │ │ ├── DOSCommandDR.res │ │ ├── DOSCommandDR.dpk │ │ ├── DOSCommandDD.dpk │ │ ├── DOSCommandDelphi.groupproj │ │ ├── DOSCommandDD.dproj │ │ └── DOSCommandDR.dproj ├── Sydney │ ├── CBuilder │ │ ├── DOSCommandCD.res │ │ ├── DOSCommandCR.res │ │ ├── DOSCommandCD.cpp │ │ ├── DOSCommandCR.cpp │ │ └── DOSCommandCBuilder.groupproj │ └── Delphi │ │ ├── DOSCommandDD.res │ │ ├── DOSCommandDR.res │ │ ├── DOSCommandDR.dpk │ │ ├── DOSCommandDD.dpk │ │ └── DOSCommandDelphi.groupproj └── 11AndAbove │ ├── Delphi │ ├── DOSCommandDD.res │ ├── DOSCommandDR.res │ ├── DOSCommandDR.dpk │ ├── DOSCommandDD.dpk │ ├── DOSCommandDelphi.groupproj │ ├── DOSCommandDD.dproj │ └── DOSCommandDR.dproj │ └── CBuilder │ ├── DOSCommandCD.res │ ├── DOSCommandCR.res │ ├── DOSCommandCD.cpp │ ├── DOSCommandCR.cpp │ ├── DOSCommandCBuilder.groupproj │ ├── DOSCommandCD.cbproj │ └── DOSCommandCR.cbproj ├── .hgignore ├── Demo ├── DemoListWindowsDir.dpr ├── Unit4.dfm └── Unit4.pas ├── Source └── DosCommand.Register.pas ├── .gitignore ├── .gitattributes ├── README.md └── license.txt /Packages/Rio/Delphi/DOSCommandDD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Rio/Delphi/DOSCommandDD.res -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Rio/Delphi/DOSCommandDR.res -------------------------------------------------------------------------------- /Packages/Rio/CBuilder/DOSCommandCD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Rio/CBuilder/DOSCommandCD.res -------------------------------------------------------------------------------- /Packages/Rio/CBuilder/DOSCommandCR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Rio/CBuilder/DOSCommandCR.res -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Tokyo/Delphi/DOSCommandDD.res -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Tokyo/Delphi/DOSCommandDR.res -------------------------------------------------------------------------------- /Packages/Berlin/CBuilder/DOSCommandCD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Berlin/CBuilder/DOSCommandCD.res -------------------------------------------------------------------------------- /Packages/Berlin/CBuilder/DOSCommandCR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Berlin/CBuilder/DOSCommandCR.res -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Berlin/Delphi/DOSCommandDD.res -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Berlin/Delphi/DOSCommandDR.res -------------------------------------------------------------------------------- /Packages/Sydney/CBuilder/DOSCommandCD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Sydney/CBuilder/DOSCommandCD.res -------------------------------------------------------------------------------- /Packages/Sydney/CBuilder/DOSCommandCR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Sydney/CBuilder/DOSCommandCR.res -------------------------------------------------------------------------------- /Packages/Sydney/Delphi/DOSCommandDD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Sydney/Delphi/DOSCommandDD.res -------------------------------------------------------------------------------- /Packages/Sydney/Delphi/DOSCommandDR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Sydney/Delphi/DOSCommandDR.res -------------------------------------------------------------------------------- /Packages/Tokyo/CBuilder/DOSCommandCD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Tokyo/CBuilder/DOSCommandCD.res -------------------------------------------------------------------------------- /Packages/Tokyo/CBuilder/DOSCommandCR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/Tokyo/CBuilder/DOSCommandCR.res -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/11AndAbove/Delphi/DOSCommandDD.res -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/11AndAbove/Delphi/DOSCommandDR.res -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/11AndAbove/CBuilder/DOSCommandCD.res -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboPack/DOSCommand/HEAD/Packages/11AndAbove/CBuilder/DOSCommandCR.res -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.local 3 | *.dsk 4 | *identcache 5 | *.~dsk 6 | *.tvsconfig 7 | __history 8 | *.exe 9 | *.otares 10 | *.stat 11 | *.dcu 12 | *.d 13 | *.o 14 | *.pch 15 | *.obj 16 | -------------------------------------------------------------------------------- /Demo/DemoListWindowsDir.dpr: -------------------------------------------------------------------------------- 1 | program DemoListWindowsDir; 2 | 3 | uses 4 | Vcl.Forms, 5 | Unit4 in 'Unit4.pas' {Form4}; 6 | 7 | {$R *.res} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.MainFormOnTaskbar := True; 12 | Application.CreateForm(TForm4, Form4); 13 | Application.Run; 14 | end. 15 | -------------------------------------------------------------------------------- /Source/DosCommand.Register.pas: -------------------------------------------------------------------------------- 1 | unit DosCommand.Register; 2 | 3 | interface 4 | 5 | procedure Register; 6 | 7 | implementation 8 | 9 | uses 10 | System.Classes, DosCommand; 11 | 12 | procedure Register; 13 | const 14 | cPage = 'DOSCommand'; 15 | begin 16 | RegisterComponents(cPage, [TDosCommand]); 17 | end; 18 | 19 | end. 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Release 3 | Debug 4 | __history 5 | *.stat 6 | *.local 7 | *.identcache 8 | *.dcu 9 | *.dsk 10 | *.~* 11 | *.obj 12 | *.tmp 13 | *.apk 14 | *.bpl 15 | *.cgi 16 | *.d 17 | *.dct 18 | *.dcr 19 | *.dres 20 | *.dst 21 | *.entitlements 22 | *.i 23 | *.ilc 24 | *.ild 25 | *.ilf 26 | *.ilr 27 | *.ils 28 | *.ipa 29 | *.map 30 | *.o 31 | *.ocx 32 | *.pdi 33 | *.profile 34 | *.sdk 35 | *.rsm 36 | *.so 37 | *.tds 38 | *.vlb 39 | *.hpp 40 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | *.pas text 7 | *.dfm text 8 | *.md text 9 | *.txt text 10 | *.java text 11 | *.cs text 12 | *.dpk -text 13 | *.dproj -text 14 | *.groupproj -text 15 | 16 | # Declare files that will always have CRLF line endings on checkout. 17 | 18 | # Denote all files that are truly binary and should not be modified. 19 | *.exe binary 20 | *.res binary 21 | -------------------------------------------------------------------------------- /Packages/Rio/CBuilder/DOSCommandCD.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Rio/CBuilder/DOSCommandCR.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Berlin/CBuilder/DOSCommandCD.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Berlin/CBuilder/DOSCommandCR.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Sydney/CBuilder/DOSCommandCD.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Sydney/CBuilder/DOSCommandCR.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Tokyo/CBuilder/DOSCommandCD.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Tokyo/CBuilder/DOSCommandCR.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCD.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCR.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | #pragma package(smart_init) 6 | //--------------------------------------------------------------------------- 7 | 8 | // Package-Quelltext. 9 | //--------------------------------------------------------------------------- 10 | 11 | 12 | #pragma argsused 13 | extern "C" int _libmain(unsigned long reason) 14 | { 15 | return 1; 16 | } 17 | //--------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDR.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDR; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Runtime Package for Delphi'} 29 | {$LIBSUFFIX '260'} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl; 35 | 36 | contains 37 | DosCommand in '..\..\..\Source\DosCommand.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDR.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDR; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Runtime Package for Delphi'} 29 | {$LIBSUFFIX '250'} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl; 35 | 36 | contains 37 | DosCommand in '..\..\..\Source\DosCommand.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDR.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDR; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Runtime Package for Delphi'} 29 | {$LIBSUFFIX '240'} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl; 35 | 36 | contains 37 | DosCommand in '..\..\..\Source\DosCommand.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Packages/Sydney/Delphi/DOSCommandDR.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDR; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Runtime Package for Delphi'} 29 | {$LIBSUFFIX '270'} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl; 35 | 36 | contains 37 | DosCommand in '..\..\..\Source\DosCommand.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDR.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDR; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Runtime Package for Delphi'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl; 35 | 36 | contains 37 | DosCommand in '..\..\..\Source\DosCommand.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDD.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDD; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Designtime Package for Delphi'} 29 | {$LIBSUFFIX '260'} 30 | {$DESIGNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl, 35 | DOSCommandDR; 36 | 37 | contains 38 | DosCommand.Register in '..\..\..\Source\DosCommand.Register.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDD.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDD; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Designtime Package for Delphi'} 29 | {$LIBSUFFIX '250'} 30 | {$DESIGNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl, 35 | DOSCommandDR; 36 | 37 | contains 38 | DosCommand.Register in '..\..\..\Source\DosCommand.Register.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDD.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDD; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Designtime Package for Delphi'} 29 | {$LIBSUFFIX '240'} 30 | {$DESIGNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl, 35 | DOSCommandDR; 36 | 37 | contains 38 | DosCommand.Register in '..\..\..\Source\DosCommand.Register.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /Packages/Sydney/Delphi/DOSCommandDD.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDD; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Designtime Package for Delphi'} 29 | {$LIBSUFFIX '270'} 30 | {$DESIGNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl, 35 | DOSCommandDR; 36 | 37 | contains 38 | DosCommand.Register in '..\..\..\Source\DosCommand.Register.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDD.dpk: -------------------------------------------------------------------------------- 1 | package DOSCommandDD; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'TurboPack DOSCommand Designtime Package for Delphi'} 29 | {$LIBSUFFIX AUTO} 30 | {$DESIGNONLY} 31 | {$IMPLICITBUILD OFF} 32 | 33 | requires 34 | rtl, 35 | DOSCommandDR; 36 | 37 | contains 38 | DosCommand.Register in '..\..\..\Source\DosCommand.Register.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /Demo/Unit4.dfm: -------------------------------------------------------------------------------- 1 | object Form4: TForm4 2 | Left = 0 3 | Top = 0 4 | Caption = 'Stdout Test' 5 | ClientHeight = 299 6 | ClientWidth = 863 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'Tahoma' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | PixelsPerInch = 96 15 | TextHeight = 13 16 | object Memo1: TMemo 17 | Left = 24 18 | Top = 8 19 | Width = 273 20 | Height = 273 21 | ScrollBars = ssBoth 22 | TabOrder = 0 23 | end 24 | object Button1: TButton 25 | Left = 712 26 | Top = 32 27 | Width = 123 28 | Height = 25 29 | Caption = 'list Windows Directory' 30 | TabOrder = 1 31 | OnClick = Button1Click 32 | end 33 | object Memo2: TMemo 34 | Left = 344 35 | Top = 8 36 | Width = 273 37 | Height = 273 38 | ScrollBars = ssBoth 39 | TabOrder = 2 40 | end 41 | object DosCommand1: TDosCommand 42 | InputToOutput = False 43 | MaxTimeAfterBeginning = 0 44 | MaxTimeAfterLastOutput = 1000 45 | OnNewLine = DosCommand1NewLine 46 | OnTerminated = DosCommand1Terminated 47 | Left = 760 48 | Top = 104 49 | end 50 | end 51 | -------------------------------------------------------------------------------- /Demo/Unit4.pas: -------------------------------------------------------------------------------- 1 | unit Unit4; 2 | 3 | interface 4 | 5 | uses 6 | Winapi.Windows, 7 | Winapi.Messages, 8 | System.SysUtils, 9 | System.Variants, 10 | System.Classes, 11 | Vcl.Graphics, 12 | Vcl.Controls, 13 | Vcl.Forms, 14 | Vcl.Dialogs, 15 | Vcl.StdCtrls, 16 | DosCommand 17 | ; 18 | 19 | type 20 | TForm4 = class(TForm) 21 | Memo1: TMemo; 22 | DosCommand1: TDosCommand; 23 | Button1: TButton; 24 | Memo2: TMemo; 25 | procedure Button1Click(Sender: TObject); 26 | procedure DosCommand1NewLine(ASender: TObject; const ANewLine: string; AOutputType: TOutputType); 27 | procedure DosCommand1Terminated(Sender: TObject); 28 | private 29 | { Private declarations } 30 | public 31 | { Public declarations } 32 | end; 33 | 34 | var 35 | Form4: TForm4; 36 | 37 | implementation 38 | 39 | {$R *.dfm} 40 | 41 | uses System.IOUtils; 42 | 43 | procedure TForm4.Button1Click(Sender: TObject); 44 | begin 45 | DosCommand1.CommandLine := 'cmd /c "dir"'; 46 | DosCommand1.CurrentDir := 'c:\windows'; 47 | Memo1.Lines.Clear; 48 | Memo2.Lines.Clear; 49 | DosCommand1.OutputLines := Memo1.Lines; 50 | 51 | Button1.Enabled := False; 52 | DosCommand1.Execute; 53 | Memo1.Lines := DosCommand1.Lines; 54 | end; 55 | 56 | procedure TForm4.DosCommand1NewLine(ASender: TObject; const ANewLine: string; AOutputType: TOutputType); 57 | begin 58 | if AOutputType = otEntireLine then 59 | begin 60 | Memo2.Lines.Add(ANewLine); 61 | end; 62 | end; 63 | 64 | procedure TForm4.DosCommand1Terminated(Sender: TObject); 65 | begin 66 | Button1.Enabled := True; 67 | end; 68 | 69 | end. 70 | -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDelphi.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {1CDCB011-6B25-4200-9E62-942B65ABB6D8} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDelphi.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {1CDCB011-6B25-4200-9E62-942B65ABB6D8} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Sydney/Delphi/DOSCommandDelphi.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {1CDCB011-6B25-4200-9E62-942B65ABB6D8} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDelphi.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {1CDCB011-6B25-4200-9E62-942B65ABB6D8} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDelphi.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {1CDCB011-6B25-4200-9E62-942B65ABB6D8} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Berlin/CBuilder/DOSCommandCBuilder.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {627E7924-705B-4FBD-BE14-C7E54CFCE66E} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Rio/CBuilder/DOSCommandCBuilder.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {627E7924-705B-4FBD-BE14-C7E54CFCE66E} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Sydney/CBuilder/DOSCommandCBuilder.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {627E7924-705B-4FBD-BE14-C7E54CFCE66E} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/Tokyo/CBuilder/DOSCommandCBuilder.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {627E7924-705B-4FBD-BE14-C7E54CFCE66E} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCBuilder.groupproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | {627E7924-705B-4FBD-BE14-C7E54CFCE66E} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default.Personality.12 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TurboPack DOSCommand 2 | 3 | Updated for **10.3 Rio** / VER330 / PKG 260 4 | 5 | You can still access [10.2 Tokyo](https://github.com/TurboPack/DOSCommand/releases/tag/102Tokyo) and [10.1 Berlin](https://github.com/TurboPack/DOSCommand/releases/tag/101Berlin) versions too. 6 | 7 | ## Table of contents 8 | 9 | 1. Introduction 10 | 2. Package names 11 | 3. Installation 12 | 4. License 13 | 14 | ## 1. Introduction 15 | 16 | TurboPack DOSCommand component let you execute a dos program (exe, com or batch file) and catch 17 | the ouput in order to put it in a memo or in a listbox, ... 18 | You can also send inputs. 19 | 20 | The cool thing of this component is that you do not need to wait the end of 21 | the program to get back the output. it comes line by line. 22 | 23 | This is a source-only release of TurboPack DOSCommand. It includes 24 | designtime and runtime packages for Delphi and C++Builder. It supports Win32 and Win64. 25 | 26 | ## 2. Package names 27 | 28 | TurboPack DOSCommand package names have the following form: 29 | 30 | ## Delphi 31 | * DOSCommandDR.bpl (Delphi Runtime) 32 | * DOSCommandDD.bpl (Delphi Designtime) 33 | 34 | ## C++Builder 35 | * DOSCommandCR.bpl (C++Builder Runtime) 36 | * DOSCommandCD.bpl (C++Builder Designtime) 37 | 38 | The runtime package contains the core functionality of the product and 39 | is not installed into the IDE. The designtime package references the 40 | runtime package, registers the components, and contains property 41 | editors used in the IDE. 42 | 43 | ## 3. Installation 44 | 45 | DOSCommand is available via the [GetIt Package Manager](http://docwiki.embarcadero.com/RADStudio/en/Installing_a_Package_Using_GetIt_Package_Manager) where you can quickly and easily install and uninstall it. 46 | 47 | To manually install TurboPack DOSCommand into your IDE, take the following 48 | steps: 49 | 50 | 1. Unzip the release files into a directory (e.g., `d:\DOSCommand`). 51 | 52 | 2. Start RAD Studio. 53 | 54 | 3. Add the source subdirectory (e.g., `d:\DOSCommand\source`) to the 55 | IDE's library path. For CBuilder, add the hpp subdirectory 56 | (e.g., `d:\essence\source\hpp\Win32\Release`) to the IDE's system include path. 57 | 58 | 4. Open & compile the runtime package specific to the IDE being 59 | used. 60 | 61 | 5. Open & install the designtime package specific to the IDE being 62 | used. The IDE should notify you the components have been 63 | installed. 64 | 65 | ## 4. License 66 | 67 | [Mozilla Public License 1.1 (MPL 1.1)](https://www.mozilla.org/en-US/MPL/1.1/) 68 | -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDD.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDD.dpk 8 | Win32 9 | {9949A787-61E1-4E03-BE90-AE9C24A1A276} 10 | DOSCommandDD 11 | 20.3 12 | 3 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Base 30 | true 31 | 32 | 33 | true 34 | Cfg_1 35 | true 36 | true 37 | 38 | 39 | true 40 | Base 41 | true 42 | 43 | 44 | true 45 | Cfg_2 46 | true 47 | true 48 | 49 | 50 | DOSCommandDD 51 | ..\cpp\$(Platform)\$(Config) 52 | All 53 | .\$(Platform)\$(Config) 54 | TurboPack DOSCommand Designtime Package for Delphi 55 | .\$(Platform)\$(Config) 56 | ..\cpp\$(Platform)\$(Config) 57 | ..\cpp\$(Platform)\$(Config) 58 | true 59 | true 60 | $(Auto) 61 | true 62 | true 63 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 64 | 1031 65 | 66 | 67 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 68 | rtl;DOSCommandDR;$(DCC_UsePackage) 69 | true 70 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 71 | 1033 72 | 73 | 74 | Debug 75 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 76 | true 77 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 78 | 1033 79 | 80 | 81 | true 82 | true 83 | DEBUG;$(DCC_Define) 84 | true 85 | false 86 | true 87 | 88 | 89 | false 90 | true 91 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 92 | 1033 93 | 94 | 95 | 0 96 | RELEASE;$(DCC_Define) 97 | false 98 | 0 99 | 100 | 101 | true 102 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 103 | 1033 104 | 105 | 106 | 107 | MainSource 108 | 109 | 110 | 111 | 112 | 113 | Base 114 | 115 | 116 | Cfg_1 117 | Base 118 | 119 | 120 | Cfg_2 121 | Base 122 | 123 | 124 | 125 | Delphi.Personality.12 126 | Package 127 | 128 | 129 | 130 | DOSCommandDD.dpk 131 | 132 | 133 | 134 | 135 | False 136 | False 137 | False 138 | False 139 | False 140 | True 141 | True 142 | False 143 | False 144 | False 145 | 146 | 147 | 12 148 | 149 | 150 | 151 | 152 | 153 | -------------------------------------------------------------------------------- /Packages/11AndAbove/Delphi/DOSCommandDR.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDR.dpk 8 | Win32 9 | {1CE6207D-4376-4E12-9ADF-1B0E73FCDE72} 10 | DOSCommandDR 11 | 20.3 12 | 3 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Base 30 | true 31 | 32 | 33 | true 34 | Cfg_1 35 | true 36 | true 37 | 38 | 39 | true 40 | Cfg_1 41 | true 42 | true 43 | 44 | 45 | true 46 | Base 47 | true 48 | 49 | 50 | true 51 | Cfg_2 52 | true 53 | true 54 | 55 | 56 | true 57 | Cfg_2 58 | true 59 | true 60 | 61 | 62 | DOSCommandDR 63 | ..\cpp\$(Platform)\$(Config) 64 | All 65 | .\$(Platform)\$(Config) 66 | TurboPack DOSCommand Runtime Package for Delphi 67 | .\$(Platform)\$(Config) 68 | ..\cpp\$(Platform)\$(Config) 69 | ..\cpp\$(Platform)\$(Config) 70 | true 71 | false 72 | $(Auto) 73 | true 74 | true 75 | true 76 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 77 | 1031 78 | 79 | 80 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 81 | true 82 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 83 | 1033 84 | 85 | 86 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 87 | true 88 | 1033 89 | 90 | 91 | true 92 | true 93 | DEBUG;$(DCC_Define) 94 | true 95 | false 96 | true 97 | 98 | 99 | false 100 | true 101 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 102 | 1033 103 | 104 | 105 | true 106 | 1033 107 | 108 | 109 | 0 110 | RELEASE;$(DCC_Define) 111 | false 112 | 0 113 | 114 | 115 | true 116 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 117 | 1033 118 | 119 | 120 | true 121 | 1033 122 | 123 | 124 | 125 | MainSource 126 | 127 | 128 | 129 | 130 | Base 131 | 132 | 133 | Cfg_1 134 | Base 135 | 136 | 137 | Cfg_2 138 | Base 139 | 140 | 141 | 142 | Delphi.Personality.12 143 | Package 144 | 145 | 146 | 147 | DOSCommandDR.dpk 148 | 149 | 150 | 151 | 152 | False 153 | False 154 | False 155 | False 156 | False 157 | True 158 | True 159 | False 160 | False 161 | False 162 | 163 | 164 | 12 165 | 166 | 167 | 168 | 169 | 170 | -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDD.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDD.dpk 8 | Win32 9 | {9949A787-61E1-4E03-BE90-AE9C24A1A276} 10 | 18.8 11 | 1 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Cfg_1 29 | true 30 | true 31 | 32 | 33 | true 34 | Base 35 | true 36 | 37 | 38 | true 39 | Cfg_2 40 | true 41 | true 42 | 43 | 44 | DOSCommandDD 45 | All 46 | .\$(Platform)\$(Config) 47 | TurboPack DOSCommand Designtime Package for Delphi 48 | .\$(Platform)\$(Config) 49 | true 50 | true 51 | 260 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 55 | 1031 56 | 57 | 58 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 59 | rtl;DOSCommandDR;$(DCC_UsePackage) 60 | true 61 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 62 | 1033 63 | 64 | 65 | true 66 | true 67 | DEBUG;$(DCC_Define) 68 | true 69 | false 70 | true 71 | 72 | 73 | false 74 | true 75 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 76 | 1033 77 | 78 | 79 | 0 80 | RELEASE;$(DCC_Define) 81 | false 82 | 0 83 | 84 | 85 | true 86 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | Base 98 | 99 | 100 | Cfg_1 101 | Base 102 | 103 | 104 | Cfg_2 105 | Base 106 | 107 | 108 | 109 | Delphi.Personality.12 110 | Package 111 | 112 | 113 | 114 | DOSCommandDD.dpk 115 | 116 | 117 | 118 | 119 | 120 | 121 | DOSCommandDD.bpl 122 | true 123 | 124 | 125 | 126 | 127 | DOSCommandDD.bpl 128 | true 129 | 130 | 131 | 132 | 133 | 0 134 | 135 | 136 | 137 | 138 | 0 139 | 140 | 141 | 142 | 143 | 0 144 | 145 | 146 | 147 | 148 | 0 149 | .dll;.bpl 150 | 151 | 152 | 153 | 154 | 0 155 | .bpl 156 | 157 | 158 | 159 | 160 | 0 161 | 162 | 163 | 164 | 165 | 0 166 | 167 | 168 | 169 | 170 | 1 171 | 172 | 173 | 174 | 175 | Assets 176 | 1 177 | 178 | 179 | 180 | 181 | Assets 182 | 1 183 | 184 | 185 | 186 | 187 | 188 | False 189 | False 190 | False 191 | False 192 | False 193 | True 194 | False 195 | False 196 | False 197 | False 198 | 199 | 200 | 12 201 | 202 | 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCD.cbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandCD.cpp 8 | Win32 9 | {3BF32379-3499-4795-A26A-0C22DE5AF3A5} 10 | DOSCommandCD 11 | 20.2 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | DOSCommandCD 46 | true 47 | true 48 | false 49 | ..\cpp\$(Platform)\$(Config) 50 | All 51 | ..\cpp\$(Platform)\$(Config) 52 | ..\cpp\$(Platform)\$(Config) 53 | true 54 | false 55 | ..\..\..\source;$(DCC_UnitSearchPath) 56 | true 57 | $(Auto) 58 | true 59 | TurboPack DOSCommand Designtime Package for CBuilder 60 | true 61 | true 62 | ..\..\..\Source\;$(ILINK_LibraryPath) 63 | $(BDSLIB)\$(PLATFORM)\release\$(LANGDIR);$(ILINK_TranslatedLibraryPath) 64 | ..\..\..\Source\;$(IncludePath) 65 | .\$(Platform)\$(Config) 66 | true 67 | CppPackage 68 | true 69 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 70 | 1031 71 | <_TCHARMapping>char 72 | 73 | 74 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 75 | adortl;appanalytics;bcbie;bcbsmp;bindcomp;bindcompdbx;bindcompfmx;bindcompvcl;bindengine;CloudService;CodeSiteExpressPkg;CustomIPTransport;DataSnapClient;DataSnapCommon;DataSnapConnectors;DatasnapConnectorsFreePascal;DataSnapFireDAC;DataSnapIndy10ServerTransport;DataSnapNativeClient;DataSnapProviderClient;DataSnapServer;DataSnapServerMidas;dbexpress;dbrtl;dbxcds;DbxClientDriver;DbxCommonDriver;DBXDb2Driver;DBXFirebirdDriver;DBXInformixDriver;DBXInterBaseDriver;DBXMSSQLDriver;DBXMySQLDriver;DBXOdbcDriver;DBXOracleDriver;DBXSqliteDriver;DBXSybaseASADriver;DBXSybaseASEDriver;dsnap;dsnapcon;dsnapxml;emsclient;emsclientfiredac;FireDAC;FireDACADSDriver;FireDACASADriver;FireDACCommon;FireDACCommonDriver;FireDACDb2Driver;FireDACDBXDriver;FireDACDSDriver;FireDACIBDriver;FireDACInfxDriver;FireDACMSAccDriver;FireDACMSSQLDriver;FireDACMySQLDriver;FireDACODBCDriver;FireDACOracleDriver;FireDACPgDriver;FireDACSqliteDriver;FireDACTDataDriver;fmx;fmxase;fmxdae;fmxFireDAC;fmxobj;FMXTee;FmxTeeUI;ibmonitor;ibxpress;IndyCore;IndyIPClient;IndyIPCommon;IndyIPServer;IndyProtocols;IndySystem;inet;inetdb;inetdbxpress;Intraweb;OnGuardCR;RESTBackendComponents;RESTComponents;rtl;soapmidas;soaprtl;soapserver;svn;Tee;TeeDB;TeeUI;tethering;vcl;vclactnband;vcldb;vcldsnap;vclFireDAC;vclib;vclie;vclimg;VCLRESTComponents;vclribbon;VclSmp;vcltouch;vclx;xmlrtl;$(PackageImports) 76 | true 77 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 78 | 1033 79 | 80 | 81 | true 82 | true 83 | true 84 | true 85 | true 86 | false 87 | false 88 | true 89 | true 90 | None 91 | true 92 | true 93 | DEBUG 94 | false 95 | _DEBUG;$(Defines) 96 | true 97 | $(BDSLIB)\$(PLATFORM)\debug;$(ILINK_LibraryPath) 98 | $(BDSLIB)\$(PLATFORM)\debug\$(LANGDIR);$(ILINK_TranslatedLibraryPath) 99 | Full 100 | true 101 | 102 | 103 | $(BDSLIB)\$(PLATFORM)$(CC_SUFFIX)\debug;$(ILINK_LibraryPath) 104 | true 105 | 1033 106 | 107 | 108 | NDEBUG;$(Defines) 109 | None 110 | 111 | 112 | true 113 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 114 | 1033 115 | 116 | 117 | 118 | 0 119 | 120 | 121 | 2 122 | 123 | 124 | 1 125 | 126 | 127 | 3 128 | 129 | 130 | Base 131 | 132 | 133 | Cfg_1 134 | Base 135 | 136 | 137 | Cfg_2 138 | Base 139 | 140 | 141 | 142 | CPlusPlusBuilder.Personality.12 143 | CppPackage 144 | 145 | 146 | 147 | DOSCommandCD.cpp 148 | 149 | 150 | 151 | False 152 | True 153 | True 154 | False 155 | 156 | 157 | 158 | False 159 | False 160 | False 161 | False 162 | False 163 | True 164 | False 165 | False 166 | False 167 | False 168 | 169 | 170 | 12 171 | 172 | 173 | 174 | 175 | 176 | -------------------------------------------------------------------------------- /Packages/Rio/Delphi/DOSCommandDR.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDR.dpk 8 | Win32 9 | {1CE6207D-4376-4E12-9ADF-1B0E73FCDE72} 10 | 18.8 11 | 3 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Base 29 | true 30 | 31 | 32 | true 33 | Cfg_1 34 | true 35 | true 36 | 37 | 38 | true 39 | Cfg_1 40 | true 41 | true 42 | 43 | 44 | true 45 | Base 46 | true 47 | 48 | 49 | true 50 | Cfg_2 51 | true 52 | true 53 | 54 | 55 | true 56 | Cfg_2 57 | true 58 | true 59 | 60 | 61 | DOSCommandDR 62 | All 63 | .\$(Platform)\$(Config) 64 | TurboPack DOSCommand Runtime Package for Delphi 65 | .\$(Platform)\$(Config) 66 | true 67 | false 68 | 260 69 | true 70 | true 71 | true 72 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 73 | 1031 74 | 75 | 76 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 77 | true 78 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 79 | 1033 80 | 81 | 82 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 83 | true 84 | 1033 85 | 86 | 87 | true 88 | true 89 | DEBUG;$(DCC_Define) 90 | true 91 | false 92 | true 93 | 94 | 95 | false 96 | true 97 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 98 | 1033 99 | 100 | 101 | true 102 | 1033 103 | 104 | 105 | 0 106 | RELEASE;$(DCC_Define) 107 | false 108 | 0 109 | 110 | 111 | true 112 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 113 | 1033 114 | 115 | 116 | true 117 | 1033 118 | 119 | 120 | 121 | MainSource 122 | 123 | 124 | 125 | 126 | Base 127 | 128 | 129 | Cfg_1 130 | Base 131 | 132 | 133 | Cfg_2 134 | Base 135 | 136 | 137 | 138 | Delphi.Personality.12 139 | Package 140 | 141 | 142 | 143 | DOSCommandDR.dpk 144 | 145 | 146 | 147 | 148 | 149 | 150 | DOSCommandDR.bpl 151 | true 152 | 153 | 154 | 155 | 156 | DOSCommandDR.bpl 157 | true 158 | 159 | 160 | 161 | 162 | 0 163 | 164 | 165 | 166 | 167 | 0 168 | 169 | 170 | 171 | 172 | 0 173 | 174 | 175 | 176 | 177 | 0 178 | .dll;.bpl 179 | 180 | 181 | 182 | 183 | 0 184 | .bpl 185 | 186 | 187 | 188 | 189 | 0 190 | 191 | 192 | 193 | 194 | 0 195 | 196 | 197 | 198 | 199 | 1 200 | 201 | 202 | 1 203 | 204 | 205 | 206 | 207 | Assets 208 | 1 209 | 210 | 211 | Assets 212 | 1 213 | 214 | 215 | 216 | 217 | Assets 218 | 1 219 | 220 | 221 | Assets 222 | 1 223 | 224 | 225 | 226 | 227 | 228 | 229 | False 230 | False 231 | False 232 | False 233 | False 234 | True 235 | True 236 | False 237 | False 238 | False 239 | 240 | 241 | 12 242 | 243 | 244 | 245 | 246 | 247 | -------------------------------------------------------------------------------- /Packages/11AndAbove/CBuilder/DOSCommandCR.cbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandCR.cpp 8 | Win32 9 | {A7BAF0BF-FA5B-422B-92E9-56EB21002941} 10 | DOSCommandCR 11 | 20.2 12 | 3 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Base 30 | true 31 | 32 | 33 | true 34 | Cfg_1 35 | true 36 | true 37 | 38 | 39 | true 40 | Cfg_1 41 | true 42 | true 43 | 44 | 45 | true 46 | Base 47 | true 48 | 49 | 50 | true 51 | Cfg_2 52 | true 53 | true 54 | 55 | 56 | true 57 | Cfg_2 58 | true 59 | true 60 | 61 | 62 | DOSCommandCR 63 | true 64 | true 65 | false 66 | ..\cpp\$(Platform)\$(Config) 67 | All 68 | ..\cpp\$(Platform)\$(Config) 69 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 70 | ..\cpp\$(Platform)\$(Config) 71 | true 72 | false 73 | $(Auto) 74 | true 75 | TurboPack DOSCommand Runtime Package for CBuilder 76 | true 77 | true 78 | ..\..\..\source\;$(ILINK_LibraryPath) 79 | $(BDSLIB)\$(PLATFORM)\release\$(LANGDIR);$(ILINK_TranslatedLibraryPath) 80 | ..\..\..\source\;$(IncludePath) 81 | .\$(Platform)\$(Config) 82 | true 83 | CppPackage 84 | true 85 | true 86 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 87 | 1031 88 | <_TCHARMapping>char 89 | 90 | 91 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 92 | adortl;appanalytics;bcbie;bcbsmp;bindcomp;bindcompdbx;bindcompfmx;bindcompvcl;bindengine;CloudService;CodeSiteExpressPkg;CustomIPTransport;DataSnapClient;DataSnapCommon;DataSnapConnectors;DatasnapConnectorsFreePascal;DataSnapFireDAC;DataSnapIndy10ServerTransport;DataSnapNativeClient;DataSnapProviderClient;DataSnapServer;DataSnapServerMidas;dbexpress;dbrtl;dbxcds;DbxClientDriver;DbxCommonDriver;DBXDb2Driver;DBXFirebirdDriver;DBXInformixDriver;DBXInterBaseDriver;DBXMSSQLDriver;DBXMySQLDriver;DBXOdbcDriver;DBXOracleDriver;DBXSqliteDriver;DBXSybaseASADriver;DBXSybaseASEDriver;DOSCommandDR;dsnap;dsnapcon;dsnapxml;emsclient;emsclientfiredac;FireDAC;FireDACADSDriver;FireDACASADriver;FireDACCommon;FireDACCommonDriver;FireDACDb2Driver;FireDACDBXDriver;FireDACDSDriver;FireDACIBDriver;FireDACInfxDriver;FireDACMSAccDriver;FireDACMSSQLDriver;FireDACMySQLDriver;FireDACODBCDriver;FireDACOracleDriver;FireDACPgDriver;FireDACSqliteDriver;FireDACTDataDriver;fmx;fmxase;fmxdae;fmxFireDAC;fmxobj;FMXTee;FmxTeeUI;ibmonitor;ibxpress;IndyCore;IndyIPClient;IndyIPCommon;IndyIPServer;IndyProtocols;IndySystem;inet;inetdb;inetdbxpress;Intraweb;OnGuardCR;RESTBackendComponents;RESTComponents;rtl;soapmidas;soaprtl;soapserver;svn;Tee;TeeDB;TeeUI;tethering;vcl;vclactnband;vcldb;vcldsnap;vclFireDAC;vclib;vclie;vclimg;VCLRESTComponents;vclribbon;VclSmp;vcltouch;vclx;xmlrtl;$(PackageImports) 93 | true 94 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 95 | 1033 96 | 97 | 98 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 99 | adortl;appanalytics;bindcomp;bindcompdbx;bindcompfmx;bindcompvcl;bindengine;CloudService;CustomIPTransport;DataSnapClient;DataSnapCommon;DataSnapConnectors;DatasnapConnectorsFreePascal;DataSnapFireDAC;DataSnapIndy10ServerTransport;DataSnapNativeClient;DataSnapProviderClient;DataSnapServer;DataSnapServerMidas;dbexpress;dbrtl;dbxcds;DbxClientDriver;DbxCommonDriver;DBXDb2Driver;DBXFirebirdDriver;DBXInformixDriver;DBXInterBaseDriver;DBXMSSQLDriver;DBXMySQLDriver;DBXOdbcDriver;DBXOracleDriver;DBXSqliteDriver;DBXSybaseASADriver;DBXSybaseASEDriver;DOSCommandDR;dsnap;dsnapcon;dsnapxml;emsclient;emsclientfiredac;FireDAC;FireDACADSDriver;FireDACASADriver;FireDACCommon;FireDACCommonDriver;FireDACDb2Driver;FireDACDBXDriver;FireDACDSDriver;FireDACIBDriver;FireDACInfxDriver;FireDACMSAccDriver;FireDACMSSQLDriver;FireDACMySQLDriver;FireDACODBCDriver;FireDACOracleDriver;FireDACPgDriver;FireDACSqliteDriver;FireDACTDataDriver;fmx;fmxase;fmxdae;fmxFireDAC;fmxobj;FMXTee;FmxTeeUI;ibmonitor;ibxpress;IndyCore;IndyIPClient;IndyIPCommon;IndyIPServer;IndyProtocols;IndySystem;inet;inetdb;inetdbxpress;Intraweb;OnGuardCR;RESTBackendComponents;RESTComponents;rtl;soapmidas;soaprtl;soapserver;Tee;TeeDB;TeeUI;tethering;vcl;vclactnband;vcldb;vcldsnap;vclFireDAC;vclib;vclie;vclimg;VCLRESTComponents;vclribbon;VclSmp;vcltouch;vclx;xmlrtl;$(PackageImports) 100 | true 101 | 1033 102 | 103 | 104 | true 105 | true 106 | true 107 | true 108 | true 109 | false 110 | false 111 | true 112 | true 113 | None 114 | true 115 | true 116 | DEBUG 117 | false 118 | _DEBUG;$(Defines) 119 | true 120 | $(BDSLIB)\$(PLATFORM)\debug;$(ILINK_LibraryPath) 121 | $(BDSLIB)\$(PLATFORM)\debug\$(LANGDIR);$(ILINK_TranslatedLibraryPath) 122 | Full 123 | true 124 | 125 | 126 | $(BDSLIB)\$(PLATFORM)$(CC_SUFFIX)\debug;$(ILINK_LibraryPath) 127 | true 128 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 129 | 1033 130 | 131 | 132 | true 133 | 1033 134 | 135 | 136 | NDEBUG;$(Defines) 137 | None 138 | 139 | 140 | true 141 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 142 | 1033 143 | 144 | 145 | true 146 | 1033 147 | 148 | 149 | 150 | 0 151 | 152 | 153 | 1 154 | 155 | 156 | 2 157 | 158 | 159 | Base 160 | 161 | 162 | Cfg_1 163 | Base 164 | 165 | 166 | Cfg_2 167 | Base 168 | 169 | 170 | 171 | CPlusPlusBuilder.Personality.12 172 | CppPackage 173 | 174 | 175 | 176 | DOSCommandCR.cpp 177 | 178 | 179 | 180 | False 181 | True 182 | True 183 | False 184 | 185 | 186 | 187 | False 188 | False 189 | False 190 | False 191 | False 192 | True 193 | True 194 | False 195 | False 196 | False 197 | 198 | 199 | 12 200 | 201 | 202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDD.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDD.dpk 8 | Win32 9 | {9949A787-61E1-4E03-BE90-AE9C24A1A276} 10 | 18.7 11 | 1 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Cfg_1 29 | true 30 | true 31 | 32 | 33 | true 34 | Base 35 | true 36 | 37 | 38 | true 39 | Cfg_2 40 | true 41 | true 42 | 43 | 44 | DOSCommandDD 45 | All 46 | .\$(Platform)\$(Config) 47 | TurboPack DOSCommand Designtime Package for Delphi 48 | .\$(Platform)\$(Config) 49 | true 50 | true 51 | 240 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 55 | 1031 56 | 57 | 58 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 59 | rtl;DOSCommandDR;$(DCC_UsePackage) 60 | true 61 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 62 | 1033 63 | 64 | 65 | true 66 | true 67 | DEBUG;$(DCC_Define) 68 | true 69 | false 70 | true 71 | 72 | 73 | false 74 | true 75 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 76 | 1033 77 | 78 | 79 | 0 80 | RELEASE;$(DCC_Define) 81 | false 82 | 0 83 | 84 | 85 | true 86 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | Base 98 | 99 | 100 | Cfg_1 101 | Base 102 | 103 | 104 | Cfg_2 105 | Base 106 | 107 | 108 | 109 | Delphi.Personality.12 110 | Package 111 | 112 | 113 | 114 | DOSCommandDD.dpk 115 | 116 | 117 | 118 | 119 | 120 | 121 | true 122 | 123 | 124 | 125 | 126 | true 127 | 128 | 129 | 130 | 131 | true 132 | 133 | 134 | 135 | 136 | true 137 | 138 | 139 | 140 | 141 | DOSCommandDD.bpl 142 | true 143 | 144 | 145 | 146 | 147 | DOSCommandDD.bpl 148 | true 149 | 150 | 151 | 152 | 153 | Contents\MacOS 154 | 0 155 | 156 | 157 | 1 158 | 159 | 160 | 161 | 162 | classes 163 | 1 164 | 165 | 166 | 167 | 168 | library\lib\armeabi-v7a 169 | 1 170 | 171 | 172 | 173 | 174 | library\lib\armeabi 175 | 1 176 | 177 | 178 | 179 | 180 | library\lib\mips 181 | 1 182 | 183 | 184 | 185 | 186 | library\lib\armeabi-v7a 187 | 1 188 | 189 | 190 | 191 | 192 | res\drawable 193 | 1 194 | 195 | 196 | 197 | 198 | res\values 199 | 1 200 | 201 | 202 | 203 | 204 | res\drawable 205 | 1 206 | 207 | 208 | 209 | 210 | res\drawable-xxhdpi 211 | 1 212 | 213 | 214 | 215 | 216 | res\drawable-ldpi 217 | 1 218 | 219 | 220 | 221 | 222 | res\drawable-mdpi 223 | 1 224 | 225 | 226 | 227 | 228 | res\drawable-hdpi 229 | 1 230 | 231 | 232 | 233 | 234 | res\drawable-xhdpi 235 | 1 236 | 237 | 238 | 239 | 240 | res\drawable-small 241 | 1 242 | 243 | 244 | 245 | 246 | res\drawable-normal 247 | 1 248 | 249 | 250 | 251 | 252 | res\drawable-large 253 | 1 254 | 255 | 256 | 257 | 258 | res\drawable-xlarge 259 | 1 260 | 261 | 262 | 263 | 264 | 0 265 | 266 | 267 | 1 268 | 269 | 270 | 1 271 | 272 | 273 | 274 | 275 | 0 276 | 277 | 278 | 1 279 | .framework 280 | 281 | 282 | 283 | 284 | 0 285 | .dll;.bpl 286 | 287 | 288 | 1 289 | .dylib 290 | 291 | 292 | 293 | 294 | 0 295 | .bpl 296 | 297 | 298 | 1 299 | .dylib 300 | 301 | 302 | 1 303 | .dylib 304 | 305 | 306 | 1 307 | .dylib 308 | 309 | 310 | 1 311 | .dylib 312 | 313 | 314 | 315 | 316 | 0 317 | 318 | 319 | 0 320 | 321 | 322 | 0 323 | 324 | 325 | 0 326 | 327 | 328 | 0 329 | 330 | 331 | 0 332 | 333 | 334 | 335 | 336 | 1 337 | 338 | 339 | 340 | 341 | 342 | 343 | Contents\Resources 344 | 1 345 | 346 | 347 | 348 | 349 | 1 350 | 351 | 352 | 1 353 | 354 | 355 | 0 356 | 357 | 358 | 1 359 | 360 | 361 | 1 362 | 363 | 364 | library\lib\armeabi-v7a 365 | 1 366 | 367 | 368 | 1 369 | 370 | 371 | 372 | 373 | 1 374 | 375 | 376 | 1 377 | 378 | 379 | 380 | 381 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 382 | 1 383 | 384 | 385 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 386 | 1 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 1 395 | 396 | 397 | 1 398 | 399 | 400 | 1 401 | 402 | 403 | 404 | 405 | Assets 406 | 1 407 | 408 | 409 | Assets 410 | 1 411 | 412 | 413 | 414 | 415 | Assets 416 | 1 417 | 418 | 419 | Assets 420 | 1 421 | 422 | 423 | 424 | 425 | 1 426 | 427 | 428 | 1 429 | 430 | 431 | 1 432 | 433 | 434 | 435 | 436 | 1 437 | 438 | 439 | 1 440 | 441 | 442 | 1 443 | 444 | 445 | 446 | 447 | 1 448 | 449 | 450 | 1 451 | 452 | 453 | 1 454 | 455 | 456 | 457 | 458 | 1 459 | 460 | 461 | 1 462 | 463 | 464 | 1 465 | 466 | 467 | 468 | 469 | 1 470 | 471 | 472 | 1 473 | 474 | 475 | 1 476 | 477 | 478 | 479 | 480 | 1 481 | 482 | 483 | 1 484 | 485 | 486 | 1 487 | 488 | 489 | 490 | 491 | 1 492 | 493 | 494 | 1 495 | 496 | 497 | 1 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | True 511 | False 512 | 513 | 514 | 12 515 | 516 | 517 | 518 | 519 | 520 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | MOZILLA PUBLIC LICENSE 2 | Version 1.1 3 | 4 | --------------- 5 | 6 | 1. Definitions. 7 | 8 | 1.0.1. "Commercial Use" means distribution or otherwise making the 9 | Covered Code available to a third party. 10 | 11 | 1.1. "Contributor" means each entity that creates or contributes to 12 | the creation of Modifications. 13 | 14 | 1.2. "Contributor Version" means the combination of the Original 15 | Code, prior Modifications used by a Contributor, and the Modifications 16 | made by that particular Contributor. 17 | 18 | 1.3. "Covered Code" means the Original Code or Modifications or the 19 | combination of the Original Code and Modifications, in each case 20 | including portions thereof. 21 | 22 | 1.4. "Electronic Distribution Mechanism" means a mechanism generally 23 | accepted in the software development community for the electronic 24 | transfer of data. 25 | 26 | 1.5. "Executable" means Covered Code in any form other than Source 27 | Code. 28 | 29 | 1.6. "Initial Developer" means the individual or entity identified 30 | as the Initial Developer in the Source Code notice required by Exhibit 31 | A. 32 | 33 | 1.7. "Larger Work" means a work which combines Covered Code or 34 | portions thereof with code not governed by the terms of this License. 35 | 36 | 1.8. "License" means this document. 37 | 38 | 1.8.1. "Licensable" means having the right to grant, to the maximum 39 | extent possible, whether at the time of the initial grant or 40 | subsequently acquired, any and all of the rights conveyed herein. 41 | 42 | 1.9. "Modifications" means any addition to or deletion from the 43 | substance or structure of either the Original Code or any previous 44 | Modifications. When Covered Code is released as a series of files, a 45 | Modification is: 46 | A. Any addition to or deletion from the contents of a file 47 | containing Original Code or previous Modifications. 48 | 49 | B. Any new file that contains any part of the Original Code or 50 | previous Modifications. 51 | 52 | 1.10. "Original Code" means Source Code of computer software code 53 | which is described in the Source Code notice required by Exhibit A as 54 | Original Code, and which, at the time of its release under this 55 | License is not already Covered Code governed by this License. 56 | 57 | 1.10.1. "Patent Claims" means any patent claim(s), now owned or 58 | hereafter acquired, including without limitation, method, process, 59 | and apparatus claims, in any patent Licensable by grantor. 60 | 61 | 1.11. "Source Code" means the preferred form of the Covered Code for 62 | making modifications to it, including all modules it contains, plus 63 | any associated interface definition files, scripts used to control 64 | compilation and installation of an Executable, or source code 65 | differential comparisons against either the Original Code or another 66 | well known, available Covered Code of the Contributor's choice. The 67 | Source Code can be in a compressed or archival form, provided the 68 | appropriate decompression or de-archiving software is widely available 69 | for no charge. 70 | 71 | 1.12. "You" (or "Your") means an individual or a legal entity 72 | exercising rights under, and complying with all of the terms of, this 73 | License or a future version of this License issued under Section 6.1. 74 | For legal entities, "You" includes any entity which controls, is 75 | controlled by, or is under common control with You. For purposes of 76 | this definition, "control" means (a) the power, direct or indirect, 77 | to cause the direction or management of such entity, whether by 78 | contract or otherwise, or (b) ownership of more than fifty percent 79 | (50%) of the outstanding shares or beneficial ownership of such 80 | entity. 81 | 82 | 2. Source Code License. 83 | 84 | 2.1. The Initial Developer Grant. 85 | The Initial Developer hereby grants You a world-wide, royalty-free, 86 | non-exclusive license, subject to third party intellectual property 87 | claims: 88 | (a) under intellectual property rights (other than patent or 89 | trademark) Licensable by Initial Developer to use, reproduce, 90 | modify, display, perform, sublicense and distribute the Original 91 | Code (or portions thereof) with or without Modifications, and/or 92 | as part of a Larger Work; and 93 | 94 | (b) under Patents Claims infringed by the making, using or 95 | selling of Original Code, to make, have made, use, practice, 96 | sell, and offer for sale, and/or otherwise dispose of the 97 | Original Code (or portions thereof). 98 | 99 | (c) the licenses granted in this Section 2.1(a) and (b) are 100 | effective on the date Initial Developer first distributes 101 | Original Code under the terms of this License. 102 | 103 | (d) Notwithstanding Section 2.1(b) above, no patent license is 104 | granted: 1) for code that You delete from the Original Code; 2) 105 | separate from the Original Code; or 3) for infringements caused 106 | by: i) the modification of the Original Code or ii) the 107 | combination of the Original Code with other software or devices. 108 | 109 | 2.2. Contributor Grant. 110 | Subject to third party intellectual property claims, each Contributor 111 | hereby grants You a world-wide, royalty-free, non-exclusive license 112 | 113 | (a) under intellectual property rights (other than patent or 114 | trademark) Licensable by Contributor, to use, reproduce, modify, 115 | display, perform, sublicense and distribute the Modifications 116 | created by such Contributor (or portions thereof) either on an 117 | unmodified basis, with other Modifications, as Covered Code 118 | and/or as part of a Larger Work; and 119 | 120 | (b) under Patent Claims infringed by the making, using, or 121 | selling of Modifications made by that Contributor either alone 122 | and/or in combination with its Contributor Version (or portions 123 | of such combination), to make, use, sell, offer for sale, have 124 | made, and/or otherwise dispose of: 1) Modifications made by that 125 | Contributor (or portions thereof); and 2) the combination of 126 | Modifications made by that Contributor with its Contributor 127 | Version (or portions of such combination). 128 | 129 | (c) the licenses granted in Sections 2.2(a) and 2.2(b) are 130 | effective on the date Contributor first makes Commercial Use of 131 | the Covered Code. 132 | 133 | (d) Notwithstanding Section 2.2(b) above, no patent license is 134 | granted: 1) for any code that Contributor has deleted from the 135 | Contributor Version; 2) separate from the Contributor Version; 136 | 3) for infringements caused by: i) third party modifications of 137 | Contributor Version or ii) the combination of Modifications made 138 | by that Contributor with other software (except as part of the 139 | Contributor Version) or other devices; or 4) under Patent Claims 140 | infringed by Covered Code in the absence of Modifications made by 141 | that Contributor. 142 | 143 | 3. Distribution Obligations. 144 | 145 | 3.1. Application of License. 146 | The Modifications which You create or to which You contribute are 147 | governed by the terms of this License, including without limitation 148 | Section 2.2. The Source Code version of Covered Code may be 149 | distributed only under the terms of this License or a future version 150 | of this License released under Section 6.1, and You must include a 151 | copy of this License with every copy of the Source Code You 152 | distribute. You may not offer or impose any terms on any Source Code 153 | version that alters or restricts the applicable version of this 154 | License or the recipients' rights hereunder. However, You may include 155 | an additional document offering the additional rights described in 156 | Section 3.5. 157 | 158 | 3.2. Availability of Source Code. 159 | Any Modification which You create or to which You contribute must be 160 | made available in Source Code form under the terms of this License 161 | either on the same media as an Executable version or via an accepted 162 | Electronic Distribution Mechanism to anyone to whom you made an 163 | Executable version available; and if made available via Electronic 164 | Distribution Mechanism, must remain available for at least twelve (12) 165 | months after the date it initially became available, or at least six 166 | (6) months after a subsequent version of that particular Modification 167 | has been made available to such recipients. You are responsible for 168 | ensuring that the Source Code version remains available even if the 169 | Electronic Distribution Mechanism is maintained by a third party. 170 | 171 | 3.3. Description of Modifications. 172 | You must cause all Covered Code to which You contribute to contain a 173 | file documenting the changes You made to create that Covered Code and 174 | the date of any change. You must include a prominent statement that 175 | the Modification is derived, directly or indirectly, from Original 176 | Code provided by the Initial Developer and including the name of the 177 | Initial Developer in (a) the Source Code, and (b) in any notice in an 178 | Executable version or related documentation in which You describe the 179 | origin or ownership of the Covered Code. 180 | 181 | 3.4. Intellectual Property Matters 182 | (a) Third Party Claims. 183 | If Contributor has knowledge that a license under a third party's 184 | intellectual property rights is required to exercise the rights 185 | granted by such Contributor under Sections 2.1 or 2.2, 186 | Contributor must include a text file with the Source Code 187 | distribution titled "LEGAL" which describes the claim and the 188 | party making the claim in sufficient detail that a recipient will 189 | know whom to contact. If Contributor obtains such knowledge after 190 | the Modification is made available as described in Section 3.2, 191 | Contributor shall promptly modify the LEGAL file in all copies 192 | Contributor makes available thereafter and shall take other steps 193 | (such as notifying appropriate mailing lists or newsgroups) 194 | reasonably calculated to inform those who received the Covered 195 | Code that new knowledge has been obtained. 196 | 197 | (b) Contributor APIs. 198 | If Contributor's Modifications include an application programming 199 | interface and Contributor has knowledge of patent licenses which 200 | are reasonably necessary to implement that API, Contributor must 201 | also include this information in the LEGAL file. 202 | 203 | (c) Representations. 204 | Contributor represents that, except as disclosed pursuant to 205 | Section 3.4(a) above, Contributor believes that Contributor's 206 | Modifications are Contributor's original creation(s) and/or 207 | Contributor has sufficient rights to grant the rights conveyed by 208 | this License. 209 | 210 | 3.5. Required Notices. 211 | You must duplicate the notice in Exhibit A in each file of the Source 212 | Code. If it is not possible to put such notice in a particular Source 213 | Code file due to its structure, then You must include such notice in a 214 | location (such as a relevant directory) where a user would be likely 215 | to look for such a notice. If You created one or more Modification(s) 216 | You may add your name as a Contributor to the notice described in 217 | Exhibit A. You must also duplicate this License in any documentation 218 | for the Source Code where You describe recipients' rights or ownership 219 | rights relating to Covered Code. You may choose to offer, and to 220 | charge a fee for, warranty, support, indemnity or liability 221 | obligations to one or more recipients of Covered Code. However, You 222 | may do so only on Your own behalf, and not on behalf of the Initial 223 | Developer or any Contributor. You must make it absolutely clear than 224 | any such warranty, support, indemnity or liability obligation is 225 | offered by You alone, and You hereby agree to indemnify the Initial 226 | Developer and every Contributor for any liability incurred by the 227 | Initial Developer or such Contributor as a result of warranty, 228 | support, indemnity or liability terms You offer. 229 | 230 | 3.6. Distribution of Executable Versions. 231 | You may distribute Covered Code in Executable form only if the 232 | requirements of Section 3.1-3.5 have been met for that Covered Code, 233 | and if You include a notice stating that the Source Code version of 234 | the Covered Code is available under the terms of this License, 235 | including a description of how and where You have fulfilled the 236 | obligations of Section 3.2. The notice must be conspicuously included 237 | in any notice in an Executable version, related documentation or 238 | collateral in which You describe recipients' rights relating to the 239 | Covered Code. You may distribute the Executable version of Covered 240 | Code or ownership rights under a license of Your choice, which may 241 | contain terms different from this License, provided that You are in 242 | compliance with the terms of this License and that the license for the 243 | Executable version does not attempt to limit or alter the recipient's 244 | rights in the Source Code version from the rights set forth in this 245 | License. If You distribute the Executable version under a different 246 | license You must make it absolutely clear that any terms which differ 247 | from this License are offered by You alone, not by the Initial 248 | Developer or any Contributor. You hereby agree to indemnify the 249 | Initial Developer and every Contributor for any liability incurred by 250 | the Initial Developer or such Contributor as a result of any such 251 | terms You offer. 252 | 253 | 3.7. Larger Works. 254 | You may create a Larger Work by combining Covered Code with other code 255 | not governed by the terms of this License and distribute the Larger 256 | Work as a single product. In such a case, You must make sure the 257 | requirements of this License are fulfilled for the Covered Code. 258 | 259 | 4. Inability to Comply Due to Statute or Regulation. 260 | 261 | If it is impossible for You to comply with any of the terms of this 262 | License with respect to some or all of the Covered Code due to 263 | statute, judicial order, or regulation then You must: (a) comply with 264 | the terms of this License to the maximum extent possible; and (b) 265 | describe the limitations and the code they affect. Such description 266 | must be included in the LEGAL file described in Section 3.4 and must 267 | be included with all distributions of the Source Code. Except to the 268 | extent prohibited by statute or regulation, such description must be 269 | sufficiently detailed for a recipient of ordinary skill to be able to 270 | understand it. 271 | 272 | 5. Application of this License. 273 | 274 | This License applies to code to which the Initial Developer has 275 | attached the notice in Exhibit A and to related Covered Code. 276 | 277 | 6. Versions of the License. 278 | 279 | 6.1. New Versions. 280 | Netscape Communications Corporation ("Netscape") may publish revised 281 | and/or new versions of the License from time to time. Each version 282 | will be given a distinguishing version number. 283 | 284 | 6.2. Effect of New Versions. 285 | Once Covered Code has been published under a particular version of the 286 | License, You may always continue to use it under the terms of that 287 | version. You may also choose to use such Covered Code under the terms 288 | of any subsequent version of the License published by Netscape. No one 289 | other than Netscape has the right to modify the terms applicable to 290 | Covered Code created under this License. 291 | 292 | 6.3. Derivative Works. 293 | If You create or use a modified version of this License (which you may 294 | only do in order to apply it to code which is not already Covered Code 295 | governed by this License), You must (a) rename Your license so that 296 | the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", 297 | "MPL", "NPL" or any confusingly similar phrase do not appear in your 298 | license (except to note that your license differs from this License) 299 | and (b) otherwise make it clear that Your version of the license 300 | contains terms which differ from the Mozilla Public License and 301 | Netscape Public License. (Filling in the name of the Initial 302 | Developer, Original Code or Contributor in the notice described in 303 | Exhibit A shall not of themselves be deemed to be modifications of 304 | this License.) 305 | 306 | 7. DISCLAIMER OF WARRANTY. 307 | 308 | COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, 309 | WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, 310 | WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF 311 | DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. 312 | THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE 313 | IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, 314 | YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE 315 | COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER 316 | OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF 317 | ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. 318 | 319 | 8. TERMINATION. 320 | 321 | 8.1. This License and the rights granted hereunder will terminate 322 | automatically if You fail to comply with terms herein and fail to cure 323 | such breach within 30 days of becoming aware of the breach. All 324 | sublicenses to the Covered Code which are properly granted shall 325 | survive any termination of this License. Provisions which, by their 326 | nature, must remain in effect beyond the termination of this License 327 | shall survive. 328 | 329 | 8.2. If You initiate litigation by asserting a patent infringement 330 | claim (excluding declatory judgment actions) against Initial Developer 331 | or a Contributor (the Initial Developer or Contributor against whom 332 | You file such action is referred to as "Participant") alleging that: 333 | 334 | (a) such Participant's Contributor Version directly or indirectly 335 | infringes any patent, then any and all rights granted by such 336 | Participant to You under Sections 2.1 and/or 2.2 of this License 337 | shall, upon 60 days notice from Participant terminate prospectively, 338 | unless if within 60 days after receipt of notice You either: (i) 339 | agree in writing to pay Participant a mutually agreeable reasonable 340 | royalty for Your past and future use of Modifications made by such 341 | Participant, or (ii) withdraw Your litigation claim with respect to 342 | the Contributor Version against such Participant. If within 60 days 343 | of notice, a reasonable royalty and payment arrangement are not 344 | mutually agreed upon in writing by the parties or the litigation claim 345 | is not withdrawn, the rights granted by Participant to You under 346 | Sections 2.1 and/or 2.2 automatically terminate at the expiration of 347 | the 60 day notice period specified above. 348 | 349 | (b) any software, hardware, or device, other than such Participant's 350 | Contributor Version, directly or indirectly infringes any patent, then 351 | any rights granted to You by such Participant under Sections 2.1(b) 352 | and 2.2(b) are revoked effective as of the date You first made, used, 353 | sold, distributed, or had made, Modifications made by that 354 | Participant. 355 | 356 | 8.3. If You assert a patent infringement claim against Participant 357 | alleging that such Participant's Contributor Version directly or 358 | indirectly infringes any patent where such claim is resolved (such as 359 | by license or settlement) prior to the initiation of patent 360 | infringement litigation, then the reasonable value of the licenses 361 | granted by such Participant under Sections 2.1 or 2.2 shall be taken 362 | into account in determining the amount or value of any payment or 363 | license. 364 | 365 | 8.4. In the event of termination under Sections 8.1 or 8.2 above, 366 | all end user license agreements (excluding distributors and resellers) 367 | which have been validly granted by You or any distributor hereunder 368 | prior to termination shall survive termination. 369 | 370 | 9. LIMITATION OF LIABILITY. 371 | 372 | UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT 373 | (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL 374 | DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, 375 | OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR 376 | ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY 377 | CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, 378 | WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER 379 | COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN 380 | INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF 381 | LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY 382 | RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW 383 | PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE 384 | EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO 385 | THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. 386 | 387 | 10. U.S. GOVERNMENT END USERS. 388 | 389 | The Covered Code is a "commercial item," as that term is defined in 390 | 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer 391 | software" and "commercial computer software documentation," as such 392 | terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 393 | C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), 394 | all U.S. Government End Users acquire Covered Code with only those 395 | rights set forth herein. 396 | 397 | 11. MISCELLANEOUS. 398 | 399 | This License represents the complete agreement concerning subject 400 | matter hereof. If any provision of this License is held to be 401 | unenforceable, such provision shall be reformed only to the extent 402 | necessary to make it enforceable. This License shall be governed by 403 | California law provisions (except to the extent applicable law, if 404 | any, provides otherwise), excluding its conflict-of-law provisions. 405 | With respect to disputes in which at least one party is a citizen of, 406 | or an entity chartered or registered to do business in the United 407 | States of America, any litigation relating to this License shall be 408 | subject to the jurisdiction of the Federal Courts of the Northern 409 | District of California, with venue lying in Santa Clara County, 410 | California, with the losing party responsible for costs, including 411 | without limitation, court costs and reasonable attorneys' fees and 412 | expenses. The application of the United Nations Convention on 413 | Contracts for the International Sale of Goods is expressly excluded. 414 | Any law or regulation which provides that the language of a contract 415 | shall be construed against the drafter shall not apply to this 416 | License. 417 | 418 | 12. RESPONSIBILITY FOR CLAIMS. 419 | 420 | As between Initial Developer and the Contributors, each party is 421 | responsible for claims and damages arising, directly or indirectly, 422 | out of its utilization of rights under this License and You agree to 423 | work with Initial Developer and Contributors to distribute such 424 | responsibility on an equitable basis. Nothing herein is intended or 425 | shall be deemed to constitute any admission of liability. 426 | 427 | 13. MULTIPLE-LICENSED CODE. 428 | 429 | Initial Developer may designate portions of the Covered Code as 430 | "Multiple-Licensed". "Multiple-Licensed" means that the Initial 431 | Developer permits you to utilize portions of the Covered Code under 432 | Your choice of the MPL or the alternative licenses, if any, specified 433 | by the Initial Developer in the file described in Exhibit A. 434 | 435 | EXHIBIT A -Mozilla Public License. 436 | 437 | ``The contents of this file are subject to the Mozilla Public License 438 | Version 1.1 (the "License"); you may not use this file except in 439 | compliance with the License. You may obtain a copy of the License at 440 | https://www.mozilla.org/MPL/ 441 | 442 | Software distributed under the License is distributed on an "AS IS" 443 | basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 444 | License for the specific language governing rights and limitations 445 | under the License. 446 | 447 | The Original Code is ______________________________________. 448 | 449 | The Initial Developer of the Original Code is ________________________. 450 | Portions created by ______________________ are Copyright (C) ______ 451 | _______________________. All Rights Reserved. 452 | 453 | Contributor(s): ______________________________________. 454 | 455 | Alternatively, the contents of this file may be used under the terms 456 | of the _____ license (the "[___] License"), in which case the 457 | provisions of [______] License are applicable instead of those 458 | above. If you wish to allow use of your version of this file only 459 | under the terms of the [____] License and not to allow others to use 460 | your version of this file under the MPL, indicate your decision by 461 | deleting the provisions above and replace them with the notice and 462 | other provisions required by the [___] License. If you do not delete 463 | the provisions above, a recipient may use your version of this file 464 | under either the MPL or the [___] License." 465 | 466 | [NOTE: The text of this Exhibit A may differ slightly from the text of 467 | the notices in the Source Code files of the Original Code. You should 468 | use the text of this Exhibit A rather than the text found in the 469 | Original Code Source Code for Your Modifications.] -------------------------------------------------------------------------------- /Packages/Tokyo/Delphi/DOSCommandDD.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDD.dpk 8 | Win32 9 | {9949A787-61E1-4E03-BE90-AE9C24A1A276} 10 | 18.7 11 | 1 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Cfg_1 29 | true 30 | true 31 | 32 | 33 | true 34 | Base 35 | true 36 | 37 | 38 | true 39 | Cfg_2 40 | true 41 | true 42 | 43 | 44 | DOSCommandDD 45 | All 46 | .\$(Platform)\$(Config) 47 | TurboPack DOSCommand Designtime Package for Delphi 48 | .\$(Platform)\$(Config) 49 | true 50 | true 51 | 250 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 55 | 1031 56 | 57 | 58 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 59 | rtl;DOSCommandDR;$(DCC_UsePackage) 60 | true 61 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 62 | 1033 63 | 64 | 65 | true 66 | true 67 | DEBUG;$(DCC_Define) 68 | true 69 | false 70 | true 71 | 72 | 73 | false 74 | true 75 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 76 | 1033 77 | 78 | 79 | 0 80 | RELEASE;$(DCC_Define) 81 | false 82 | 0 83 | 84 | 85 | true 86 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | Cfg_2 98 | Base 99 | 100 | 101 | Base 102 | 103 | 104 | Cfg_1 105 | Base 106 | 107 | 108 | 109 | Delphi.Personality.12 110 | Package 111 | 112 | 113 | 114 | DOSCommandDD.dpk 115 | 116 | 117 | Embarcadero C++Builder-Package für Office 2000-Server 118 | Embarcadero C++Builder-Package für Office XP-Server 119 | Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver 120 | Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server 121 | 122 | 123 | 124 | 125 | 126 | DOSCommandDD.bpl 127 | true 128 | 129 | 130 | 131 | 132 | true 133 | 134 | 135 | 136 | 137 | true 138 | 139 | 140 | 141 | 142 | true 143 | 144 | 145 | 146 | 147 | DOSCommandDD.bpl 148 | true 149 | 150 | 151 | 152 | 153 | true 154 | 155 | 156 | 157 | 158 | 1 159 | 160 | 161 | Contents\MacOS 162 | 0 163 | 164 | 165 | 166 | 167 | classes 168 | 1 169 | 170 | 171 | 172 | 173 | library\lib\armeabi-v7a 174 | 1 175 | 176 | 177 | 178 | 179 | library\lib\armeabi 180 | 1 181 | 182 | 183 | 184 | 185 | library\lib\mips 186 | 1 187 | 188 | 189 | 190 | 191 | library\lib\armeabi-v7a 192 | 1 193 | 194 | 195 | 196 | 197 | res\drawable 198 | 1 199 | 200 | 201 | 202 | 203 | res\values 204 | 1 205 | 206 | 207 | 208 | 209 | res\drawable 210 | 1 211 | 212 | 213 | 214 | 215 | res\drawable-xxhdpi 216 | 1 217 | 218 | 219 | 220 | 221 | res\drawable-ldpi 222 | 1 223 | 224 | 225 | 226 | 227 | res\drawable-mdpi 228 | 1 229 | 230 | 231 | 232 | 233 | res\drawable-hdpi 234 | 1 235 | 236 | 237 | 238 | 239 | res\drawable-xhdpi 240 | 1 241 | 242 | 243 | 244 | 245 | res\drawable-small 246 | 1 247 | 248 | 249 | 250 | 251 | res\drawable-normal 252 | 1 253 | 254 | 255 | 256 | 257 | res\drawable-large 258 | 1 259 | 260 | 261 | 262 | 263 | res\drawable-xlarge 264 | 1 265 | 266 | 267 | 268 | 269 | 1 270 | 271 | 272 | 1 273 | 274 | 275 | 0 276 | 277 | 278 | 279 | 280 | 1 281 | .framework 282 | 283 | 284 | 0 285 | 286 | 287 | 288 | 289 | 1 290 | .dylib 291 | 292 | 293 | 0 294 | .dll;.bpl 295 | 296 | 297 | 298 | 299 | 1 300 | .dylib 301 | 302 | 303 | 1 304 | .dylib 305 | 306 | 307 | 1 308 | .dylib 309 | 310 | 311 | 1 312 | .dylib 313 | 314 | 315 | 0 316 | .bpl 317 | 318 | 319 | 320 | 321 | 0 322 | 323 | 324 | 0 325 | 326 | 327 | 0 328 | 329 | 330 | 0 331 | 332 | 333 | 0 334 | 335 | 336 | 0 337 | 338 | 339 | 340 | 341 | 1 342 | 343 | 344 | 1 345 | 346 | 347 | 1 348 | 349 | 350 | 351 | 352 | 1 353 | 354 | 355 | 1 356 | 357 | 358 | 1 359 | 360 | 361 | 362 | 363 | 1 364 | 365 | 366 | 1 367 | 368 | 369 | 1 370 | 371 | 372 | 373 | 374 | 1 375 | 376 | 377 | 1 378 | 379 | 380 | 1 381 | 382 | 383 | 384 | 385 | 1 386 | 387 | 388 | 1 389 | 390 | 391 | 1 392 | 393 | 394 | 395 | 396 | 1 397 | 398 | 399 | 1 400 | 401 | 402 | 1 403 | 404 | 405 | 406 | 407 | 1 408 | 409 | 410 | 1 411 | 412 | 413 | 1 414 | 415 | 416 | 417 | 418 | 1 419 | 420 | 421 | 422 | 423 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 424 | 1 425 | 426 | 427 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 428 | 1 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 1 437 | 438 | 439 | 1 440 | 441 | 442 | 1 443 | 444 | 445 | 446 | 447 | 448 | 449 | Contents\Resources 450 | 1 451 | 452 | 453 | 454 | 455 | library\lib\armeabi-v7a 456 | 1 457 | 458 | 459 | 1 460 | 461 | 462 | 1 463 | 464 | 465 | 1 466 | 467 | 468 | 1 469 | 470 | 471 | 1 472 | 473 | 474 | 0 475 | 476 | 477 | 478 | 479 | 1 480 | 481 | 482 | 1 483 | 484 | 485 | 486 | 487 | Assets 488 | 1 489 | 490 | 491 | Assets 492 | 1 493 | 494 | 495 | 496 | 497 | Assets 498 | 1 499 | 500 | 501 | Assets 502 | 1 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | True 516 | False 517 | 518 | 519 | 12 520 | 521 | 522 | 523 | 524 | 525 | -------------------------------------------------------------------------------- /Packages/Berlin/Delphi/DOSCommandDR.dproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | True 4 | Package 5 | Release 6 | None 7 | DOSCommandDR.dpk 8 | Win32 9 | {1CE6207D-4376-4E12-9ADF-1B0E73FCDE72} 10 | 18.7 11 | 3 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Base 29 | true 30 | 31 | 32 | true 33 | Cfg_1 34 | true 35 | true 36 | 37 | 38 | true 39 | Cfg_1 40 | true 41 | true 42 | 43 | 44 | true 45 | Base 46 | true 47 | 48 | 49 | true 50 | Cfg_2 51 | true 52 | true 53 | 54 | 55 | true 56 | Cfg_2 57 | true 58 | true 59 | 60 | 61 | DOSCommandDR 62 | All 63 | .\$(Platform)\$(Config) 64 | TurboPack DOSCommand Runtime Package for Delphi 65 | .\$(Platform)\$(Config) 66 | true 67 | false 68 | 240 69 | true 70 | true 71 | true 72 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= 73 | 1031 74 | 75 | 76 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 77 | true 78 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 79 | 1033 80 | 81 | 82 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 83 | true 84 | 1033 85 | 86 | 87 | true 88 | true 89 | DEBUG;$(DCC_Define) 90 | true 91 | false 92 | true 93 | 94 | 95 | false 96 | true 97 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 98 | 1033 99 | 100 | 101 | true 102 | 1033 103 | 104 | 105 | 0 106 | RELEASE;$(DCC_Define) 107 | false 108 | 0 109 | 110 | 111 | true 112 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) 113 | 1033 114 | 115 | 116 | true 117 | 1033 118 | 119 | 120 | 121 | MainSource 122 | 123 | 124 | 125 | 126 | Base 127 | 128 | 129 | Cfg_1 130 | Base 131 | 132 | 133 | Cfg_2 134 | Base 135 | 136 | 137 | 138 | Delphi.Personality.12 139 | Package 140 | 141 | 142 | 143 | DOSCommandDR.dpk 144 | 145 | 146 | 147 | 148 | 149 | 150 | true 151 | 152 | 153 | 154 | 155 | true 156 | 157 | 158 | 159 | 160 | true 161 | 162 | 163 | 164 | 165 | true 166 | 167 | 168 | 169 | 170 | DOSCommandDR.bpl 171 | true 172 | 173 | 174 | 175 | 176 | DOSCommandDR.bpl 177 | true 178 | 179 | 180 | 181 | 182 | Contents\MacOS 183 | 0 184 | 185 | 186 | 1 187 | 188 | 189 | 190 | 191 | classes 192 | 1 193 | 194 | 195 | 196 | 197 | library\lib\armeabi-v7a 198 | 1 199 | 200 | 201 | 202 | 203 | library\lib\armeabi 204 | 1 205 | 206 | 207 | 208 | 209 | library\lib\mips 210 | 1 211 | 212 | 213 | 214 | 215 | library\lib\armeabi-v7a 216 | 1 217 | 218 | 219 | 220 | 221 | res\drawable 222 | 1 223 | 224 | 225 | 226 | 227 | res\values 228 | 1 229 | 230 | 231 | 232 | 233 | res\drawable 234 | 1 235 | 236 | 237 | 238 | 239 | res\drawable-xxhdpi 240 | 1 241 | 242 | 243 | 244 | 245 | res\drawable-ldpi 246 | 1 247 | 248 | 249 | 250 | 251 | res\drawable-mdpi 252 | 1 253 | 254 | 255 | 256 | 257 | res\drawable-hdpi 258 | 1 259 | 260 | 261 | 262 | 263 | res\drawable-xhdpi 264 | 1 265 | 266 | 267 | 268 | 269 | res\drawable-small 270 | 1 271 | 272 | 273 | 274 | 275 | res\drawable-normal 276 | 1 277 | 278 | 279 | 280 | 281 | res\drawable-large 282 | 1 283 | 284 | 285 | 286 | 287 | res\drawable-xlarge 288 | 1 289 | 290 | 291 | 292 | 293 | 0 294 | 295 | 296 | 1 297 | 298 | 299 | 1 300 | 301 | 302 | 303 | 304 | 0 305 | 306 | 307 | 1 308 | .framework 309 | 310 | 311 | 312 | 313 | 0 314 | .dll;.bpl 315 | 316 | 317 | 1 318 | .dylib 319 | 320 | 321 | 322 | 323 | 0 324 | .bpl 325 | 326 | 327 | 1 328 | .dylib 329 | 330 | 331 | 1 332 | .dylib 333 | 334 | 335 | 1 336 | .dylib 337 | 338 | 339 | 1 340 | .dylib 341 | 342 | 343 | 344 | 345 | 0 346 | 347 | 348 | 0 349 | 350 | 351 | 0 352 | 353 | 354 | 0 355 | 356 | 357 | 0 358 | 359 | 360 | 0 361 | 362 | 363 | 364 | 365 | 1 366 | 367 | 368 | 369 | 370 | 371 | 372 | Contents\Resources 373 | 1 374 | 375 | 376 | 377 | 378 | 1 379 | 380 | 381 | 1 382 | 383 | 384 | 0 385 | 386 | 387 | 1 388 | 389 | 390 | 1 391 | 392 | 393 | library\lib\armeabi-v7a 394 | 1 395 | 396 | 397 | 1 398 | 399 | 400 | 401 | 402 | 1 403 | 404 | 405 | 1 406 | 407 | 408 | 409 | 410 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 411 | 1 412 | 413 | 414 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 415 | 1 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 1 424 | 425 | 426 | 1 427 | 428 | 429 | 1 430 | 431 | 432 | 433 | 434 | Assets 435 | 1 436 | 437 | 438 | Assets 439 | 1 440 | 441 | 442 | 443 | 444 | Assets 445 | 1 446 | 447 | 448 | Assets 449 | 1 450 | 451 | 452 | 453 | 454 | 1 455 | 456 | 457 | 1 458 | 459 | 460 | 1 461 | 462 | 463 | 464 | 465 | 1 466 | 467 | 468 | 1 469 | 470 | 471 | 1 472 | 473 | 474 | 475 | 476 | 1 477 | 478 | 479 | 1 480 | 481 | 482 | 1 483 | 484 | 485 | 486 | 487 | 1 488 | 489 | 490 | 1 491 | 492 | 493 | 1 494 | 495 | 496 | 497 | 498 | 1 499 | 500 | 501 | 1 502 | 503 | 504 | 1 505 | 506 | 507 | 508 | 509 | 1 510 | 511 | 512 | 1 513 | 514 | 515 | 1 516 | 517 | 518 | 519 | 520 | 1 521 | 522 | 523 | 1 524 | 525 | 526 | 1 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | True 540 | True 541 | 542 | 543 | 12 544 | 545 | 546 | 547 | 548 | 549 | --------------------------------------------------------------------------------