1
vote
4answers
97 views
Delphi call a DLL
I have a DLL and wan't to call it from delphi
extern "C" export_dll_function int RetScreen(int number, char** pbuffer, unsigned long* psize,
IMAGE_RESOLUTION resolution, float zoo …
2
votes
7answers
262 views
Use SSL with Delphi yet still having a single exe
Hi,
We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe.
We know that the default Indy handler requires to have the d …
5
votes
3answers
113 views
What principles should be followed to make a DLL created using Delphi works well in other Delphi version?
After this question, I need to know what principles should be followed in order to make an encapsulation of a class in a dll compatible to other version of Delphi.
I made a class u …
2
votes
5answers
151 views
Loading a Delphi Object Run Time using BPL
I have a class in a unit. Usually, when I changed the algorithm of its methods, I have to recompile it and deliver the patch as a whole.
I think to create the instance of the class …
2
votes
7answers
135 views
How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks?
I have to create a DLL which is used by a VB6 application. This DLL has to provide several functions, some of them must return strings.
This is the VB6 declaration:
Declare Funct …
2
votes
3answers
97 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
171 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
104 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
216 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 …
1
vote
4answers
206 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 …
3
votes
4answers
223 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 …
2
votes
2answers
176 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
3answers
87 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 …
0
votes
2answers
140 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 …
1
vote
3answers
208 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 …
