| 1 | 
 program OniUnPacker; | 
 
 
 
 
 
 | 2 | 
  | 
 
 
 
 
 
 | 3 | 
 uses | 
 
 
 
 
 
 | 4 | 
   Forms, | 
 
 
 
 
 
 | 5 | 
   FTypeReg in 'ImportedStuff\FTypeReg.pas', | 
 
 
 
 
 
 | 6 | 
   FolderBrowser in 'ImportedStuff\FolderBrowser.pas', | 
 
 
 
 
 
 | 7 | 
   OneInst in 'ImportedStuff\OneInst.pas', | 
 
 
 
 
 
 | 8 | 
   Data in 'Global\Data.pas', | 
 
 
 
 
 
 | 9 | 
   TypeDefs in 'Global\TypeDefs.pas', | 
 
 
 
 
 
 | 10 | 
   DataAccess in 'DataAccess\DataAccess.pas', | 
 
 
 
 
 
 | 11 | 
   Access_OniArchive in 'DataAccess\Access_OniArchive.pas', | 
 
 
 
 
 
 | 12 | 
   Access_OUP_ADB in 'DataAccess\Access_OUP_ADB.pas', | 
 
 
 
 
 
 | 13 | 
   ConnectionManager in 'DataAccess\ConnectionManager.pas', | 
 
 
 
 
 
 | 14 | 
   Main in 'Main.pas' {Form_Main}, | 
 
 
 
 
 
 | 15 | 
   Settings in 'Settings.pas' {Form_Settings}, | 
 
 
 
 
 
 | 16 | 
   Template in 'Tools\Template.pas' {Form_ToolTemplate}, | 
 
 
 
 
 
 | 17 | 
   TxmpReplace in 'Tools\TxmpReplace.pas' {Form_TxmpReplace}, | 
 
 
 
 
 
 | 18 | 
   BinEdit in 'Tools\BinEdit.pas' {Form_BinEdit}, | 
 
 
 
 
 
 | 19 | 
   Extractor in 'Tools\Extractor.pas' {Form_Extractor}, | 
 
 
 
 
 
 | 20 | 
   Preview in 'Tools\Preview.pas' {Form_Preview}, | 
 
 
 
 
 
 | 21 | 
   RawEdit in 'Tools\RawEdit.pas' {Form_RawEdit}, | 
 
 
 
 
 
 | 22 | 
   OniImgClass in 'Global\OniImgClass.pas', | 
 
 
 
 
 
 | 23 | 
   Functions in 'Global\Functions.pas', | 
 
 
 
 
 
 | 24 | 
   Helper_ValueEdit in 'Helper\Helper_ValueEdit.pas' {Form_ValueEdit}, | 
 
 
 
 
 
 | 25 | 
   RawList in 'Global\RawList.pas', | 
 
 
 
 
 
 | 26 | 
   DatStructureLoader in 'Global\DatStructureLoader.pas', | 
 
 
 
 
 
 | 27 | 
   Exporters in 'Global\Exporters.pas'; | 
 
 
 
 
 
 | 28 | 
  | 
 
 
 
 
 
 | 29 | 
 {$R *.res} | 
 
 
 
 
 
 | 30 | 
 {$R ExtraIcos.res} | 
 
 
 
 
 
 | 31 | 
  | 
 
 
 
 
 
 | 32 | 
 begin | 
 
 
 
 
 
 | 33 | 
   Application.Initialize; | 
 
 
 
 
 
 | 34 | 
   Application.Title := 'Oni Un/Packer'; | 
 
 
 
 
 
 | 35 | 
   Application.CreateForm(TForm_Main, Form_Main); | 
 
 
 
 
 
 | 36 | 
   Application.CreateForm(TForm_Settings, Form_Settings); | 
 
 
 
 
 
 | 37 | 
   Application.CreateForm(TForm_ValueEdit, Form_ValueEdit); | 
 
 
 
 
 
 | 38 | 
   Application.Run; | 
 
 
 
 
 
 | 39 | 
 end. |