Skip to content

Commit abddced

Browse files
authoredOct 20, 2020
Merge pull request #203 from jimmckeeth/master
Renamed the Delphi module to DelphiVCL
2 parents 27e7b2e + 1436ff7 commit abddced

File tree

9 files changed

+944
-218
lines changed

9 files changed

+944
-218
lines changed
 

‎Modules/Delphi/Delphi.dpr

-32
This file was deleted.

‎Modules/Delphi/Delphi.dproj

-108
This file was deleted.

‎Modules/Delphi/TestApp.py

-25
This file was deleted.

‎Modules/DelphiVCL/DelphiVCL.dpr

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
library DelphiVCL;
2+
3+
uses
4+
SysUtils,
5+
Classes,
6+
uMain in 'uMain.pas';
7+
8+
{$I Definition.Inc}
9+
10+
exports
11+
// This must match the pattern "PyInit_[ProjectName]"
12+
// So if the project is named DelphiVCL then
13+
// the export must be PyInit_DelphiVCL
14+
PyInit_DelphiVCL;
15+
{$IFDEF MSWINDOWS}
16+
{$E pyd}
17+
{$ENDIF}
18+
{$IFDEF LINUX}
19+
{$SONAME 'DelphiVCL'}
20+
21+
{$ENDIF}
22+
23+
begin
24+
end.
25+

0 commit comments

Comments
 (0)
Failed to load comments.