Skip to content

Navigation Menu

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

9 files changed

+944
-218
lines changed
Filter options

9 files changed

+944
-218
lines changed

‎Modules/Delphi/Delphi.dpr

Copy file name to clipboardExpand all lines: Modules/Delphi/Delphi.dpr
-32
This file was deleted.

‎Modules/Delphi/Delphi.dproj

Copy file name to clipboardExpand all lines: Modules/Delphi/Delphi.dproj
-108
This file was deleted.

‎Modules/Delphi/TestApp.py

Copy file name to clipboardExpand all lines: Modules/Delphi/TestApp.py
-25
This file was deleted.

‎Modules/DelphiVCL/DelphiVCL.dpr

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