-
-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from jimmckeeth/master
Renamed the Delphi module to DelphiVCL
- Loading branch information
Showing
9 changed files
with
944 additions
and
218 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
library DelphiVCL; | ||
|
||
uses | ||
SysUtils, | ||
Classes, | ||
uMain in 'uMain.pas'; | ||
|
||
{$I Definition.Inc} | ||
|
||
exports | ||
// This must match the pattern "PyInit_[ProjectName]" | ||
// So if the project is named DelphiVCL then | ||
// the export must be PyInit_DelphiVCL | ||
PyInit_DelphiVCL; | ||
{$IFDEF MSWINDOWS} | ||
{$E pyd} | ||
{$ENDIF} | ||
{$IFDEF LINUX} | ||
{$SONAME 'DelphiVCL'} | ||
|
||
{$ENDIF} | ||
|
||
begin | ||
end. | ||
|
Oops, something went wrong.