Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit abddced

Browse filesBrowse files
authored
Merge pull request #203 from jimmckeeth/master
Renamed the Delphi module to DelphiVCL
2 parents 27e7b2e + 1436ff7 commit abddced
Copy full SHA for abddced

File tree

Expand file treeCollapse file tree

9 files changed

+944
-218
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+944
-218
lines changed

‎Modules/Delphi/Delphi.dpr

Copy file name to clipboardExpand all lines: Modules/Delphi/Delphi.dpr
-32Lines changed: 0 additions & 32 deletions
This file was deleted.

‎Modules/Delphi/Delphi.dproj

Copy file name to clipboardExpand all lines: Modules/Delphi/Delphi.dproj
-108Lines changed: 0 additions & 108 deletions
This file was deleted.

‎Modules/Delphi/TestApp.py

Copy file name to clipboardExpand all lines: Modules/Delphi/TestApp.py
-25Lines changed: 0 additions & 25 deletions
This file was deleted.

‎Modules/DelphiVCL/DelphiVCL.dpr

Copy file name to clipboard
+25Lines changed: 25 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.