Delphi-PRAXiS
Seite 3 von 3     123   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Delphi DLL und deren Import in C/C++ (https://www.delphipraxis.net/94581-delphi-dll-und-deren-import-c-c.html)

mkinzler 23. Jun 2007 19:28

Re: Delphi DLL und deren Import in C/C++
 
Welche Typen hast du den in den Funktionen?

c113plpbr 23. Jun 2007 19:35

Re: Delphi DLL und deren Import in C/C++
 
Zitat:

Zitat von mkinzler
Welche Typen hast du den in den Funktionen?

Pointer, DWORD, Byte, BOOL

pdug 8. Jul 2007 03:07

Re: Delphi DLL und deren Import in C/C++
 
Frisch getestet:

DLL my.dll erstellt mit Borland Studio 2006 (Delphi für Win32 Dll Projekt)
my.lib importiert mit MS Visual Studio 2005 (C++ für Win32 Projekt)


my.def erstellen mit BORLAND:
Code:
IMPDEF my.def my.dll
my.lib erstellen mit MSVC:
Code:
LIB /MACHINE:x86 /DEF:my.def
Textdatei def.tmp als Vorlage für .def Datei mit MSVC erstellen (falls IMPDEF Probleme macht.):
Code:
DUMPBIN /EXPORTS /OUT:def.tmp my.dll

Oder DEF Datei per Hand:
Code:
LIBRARY    MY.DLL

DESCRIPTION 'MY Dll'

EXPORTS
    myFunction       ; comment
Im Header:

Code:
#define DLLPACK __declspec(dllimport)

extern "C" {
  DLLPACK float myFunction(void);
}

my.lib in Projekt einbinden und fertig.


p.s. Kann - außer etwas Tipparbeit - keinen Nachteil des Ladens zur Laufzeit sehen. Im Gegenteil: So kann sich ein Programm definiert verhalten selbst wenn die DLL fehlt. Verzicht auf die DLL durch statisches linken ist mit einer Importbibliothek ja eh nicht drin.

pdug 8. Jul 2007 03:13

Re: Delphi DLL und deren Import in C/C++
 
Ach und für die Header Datei siehe natürlich Dr Bobs Headconv


Alle Zeitangaben in WEZ +1. Es ist jetzt 21:00 Uhr.
Seite 3 von 3     123   

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz