FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python4delphi/Modules/RttiModule/DemoModule.dpr at master · lmbelo/python4delphi · GitHub
lmbelo
/
python4delphi
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
337
Star
1.1k
Code
Issues
8
Pull requests
2
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python4delphi
/
Modules
/
RttiModule
/
DemoModule.dpr
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (25 loc) · 860 Bytes
Breadcrumbs
python4delphi
/
Modules
/
RttiModule
/
DemoModule.dpr
Copy path
File metadata and controls
32 lines (25 loc) · 860 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
library
DemoModule;
{
Important note about DLL memory management: ShareMem must be the
first unit in your library's USES clause AND your project's (select
Project-View Source) USES clause if your DLL exports any procedures or
functions that pass strings as parameters or function results. This
applies to all strings passed to and from your DLL--even those that
are nested in records and classes. ShareMem is the interface unit to
the BORLNDMM.DLL shared memory manager, which must be deployed along
with your DLL. To avoid using BORLNDMM.DLL, pass string information
using PChar or ShortString parameters.
}
uses
SysUtils,
Classes,
uMain
in
'
uMain.pas
'
;
{
$I Definition.Inc
}
exports
PyInit_DemoModule;
{
$IFDEF MSWINDOWS
}
{
$E pyd
}
{
$ENDIF
}
{
$IFDEF LINUX
}
{
$SONAME 'DemoModule'
}
{
$ENDIF
}
begin
end
.
Back
|
FazBrowse Home
|
New Git URL