Can somebody tell me where to find an example in how to make an DLL(WindowsControlLibrary) i prism?
In the old Delphi, you make an Export section.
Thank in advance.
Frank Sidor.
|
|
Can somebody tell me where to find an example in how to make an DLL(WindowsControlLibrary) i prism? Thank in advance. Frank Sidor. |
|||
|
|
|
|
To create an Unmanaged DLL Export using Delphi Prism and call it with Delphi 2010 you must do the following: In Delphi Prism:
Press OK. This will create the template for the Windows Class Library Right Click on the Project "ClassLibraryX" and Select Properties:
This sets up the project to support the UnmanagedExportAttribute. Then in the code you will need to create a class method. In the example below I added a reference to System.Windows.Forms.
Using a PEViewer, I used the one that ships as an example in JCL, you should be able to see the new export. In the above exampele "ShowMessage" |
||||
|