├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── testbed │ ├── TestDLL │ ├── TestDLL.dpr │ ├── TestDLL.dproj │ ├── TestDLL.dsv │ ├── TestDLL.res │ └── UTestDLL.pas │ ├── Testbed.dpr │ ├── Testbed.dproj │ ├── Testbed.dsv │ ├── Testbed.res │ ├── Testbed_Icon.ico │ └── UTestbed.pas ├── media ├── delphi.png └── dlluminator.png └── src ├── Dlluminator.groupproj └── Dlluminator.pas /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/README.md -------------------------------------------------------------------------------- /examples/testbed/TestDLL/TestDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/TestDLL/TestDLL.dpr -------------------------------------------------------------------------------- /examples/testbed/TestDLL/TestDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/TestDLL/TestDLL.dproj -------------------------------------------------------------------------------- /examples/testbed/TestDLL/TestDLL.dsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/testbed/TestDLL/TestDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/TestDLL/TestDLL.res -------------------------------------------------------------------------------- /examples/testbed/TestDLL/UTestDLL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/TestDLL/UTestDLL.pas -------------------------------------------------------------------------------- /examples/testbed/Testbed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/Testbed.dpr -------------------------------------------------------------------------------- /examples/testbed/Testbed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/Testbed.dproj -------------------------------------------------------------------------------- /examples/testbed/Testbed.dsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/Testbed.dsv -------------------------------------------------------------------------------- /examples/testbed/Testbed.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/Testbed.res -------------------------------------------------------------------------------- /examples/testbed/Testbed_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/Testbed_Icon.ico -------------------------------------------------------------------------------- /examples/testbed/UTestbed.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/examples/testbed/UTestbed.pas -------------------------------------------------------------------------------- /media/delphi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/media/delphi.png -------------------------------------------------------------------------------- /media/dlluminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/media/dlluminator.png -------------------------------------------------------------------------------- /src/Dlluminator.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/src/Dlluminator.groupproj -------------------------------------------------------------------------------- /src/Dlluminator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/Dlluminator/HEAD/src/Dlluminator.pas --------------------------------------------------------------------------------