2
votes
3answers
52 views
How to debug a DLL called from Java in Delphi?
With Delphi I wrote a DLL which can be called from Java via JNA (Java Native Access). Methods in this DLL are just simple operations, but for future use and more complex invocation …
3
votes
4answers
144 views
How to pass and return objects to and from a DLL?
Hello everybody...
I need to return objects from a DLL made in Delphi, to an app made in Delphi, too. The objective is to do a subsystem that can be modify in the future without t …
0
votes
2answers
95 views
How do I (or if I can’t) use Variants on simple DLLs?
I want to expose some functionality of a internal object as a DLL - but that functionality uses variants. But I need to know: I can export a function with Variant parameters and/or …
1
vote
4answers
121 views
Delphi: Access violation after calling function from external DLL (C++)
There's a function, written in C++ and compiled as DLL, which I want to use in my Delphi application.
Scraper.cpp:
SCRAPER_API bool ScraperGetWinList(SWin winList[100])
{
iCu …
3
votes
4answers
206 views
How to return an instance from a DLL?
Hello buddies:
I am programming a DLL. I have to return an instance of TBitmap to the host application.
The DLL has another UNIT, wich is a Form, that it has a TImageList for stor …
1
vote
4answers
176 views
Can’t use DLL (written in C++) in Delphi: The procedure entry point could not be located
I've compiled a DLL in Visual Studio (the source code is in C++, which I barely understand). Here's a piece of Scraper.h:
struct SWin
{
char title[512];
HWND hwnd;
};
SCRAP …
2
votes
2answers
153 views
How to use C++ Classes exported by a dll in Delphi
Hi,
is there a way to use C++ classes exported by a win32 dll in Delphi for win32? Are there other ways to archieve similar things (COM, .NET, ...)?
0
votes
2answers
128 views
How to call a dll with “_pascal calling convention” from Delphi ?
I have a dll RL6_dll.dll from a routing program RouteLogix that is used to plan trucks etc.
Now we want to use that from Delphi 2007.
We have a c++ header for the dll and a workin …
0
votes
3answers
82 views
Is it safe to pass a pointer to a method as a member of a record?
Hi quick question. I want to implement a function in a dll that accepts a record as a parameter and this record as a few fields that hold pointers to callback routines. Would this …
1
vote
3answers
176 views
Delphi and dll versions
First off, forgive me if this is a schoolboy question :)
We have a number of applications that user Delphi dbxpress to access a MySQL 5 server. These applications were all writte …
2
votes
3answers
218 views
Delphi PChar to C++ const char*
I am trying to use a C++ dll from a native program. I am following the virtual method scenario as explained here
Lets say my C++ function signature is of the form
int Setup(cons …
0
votes
2answers
163 views
Callback from a C++ dll to a delphi application
Application is written in delphi 2010 and the underlying dll is a C++ dll.
In ideal case, when your application is in C++; The dll makes a callback to an application when an even …
5
votes
8answers
515 views
Delphi Dynamic Dll - global variable
Hi,
I am busy coding a dll that supplies several functions to a host application.
This application calls the dll dynamically, loading and freeing it after every function call.
I …
7
votes
5answers
562 views
Plugins system for Delphi application - bpl vs dll?
Hi,
I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's bette …
0
votes
3answers
222 views
Using delphi application’s memory manager in a delphi DLL (without recompiling the application)
I need to write a DLL (using Delphi) which is dynamically loaded into delphi applications and makes RTTI queries (typical operation is to obtain string values for control propertie …
