2
votes
8answers
246 views
Delphi: Why can I link this function statically but not dynamically?
I am currently writing a module which interfaces with a black box 3rd party DLL for a check scanner. I need to have the DLL functions loaded dynamically, and this is working for all but one function.
…
1
vote
2answers
97 views
ShareMem/ string-exchanging with Delphi DLL
Quick one I hope - I'm just about to delve into a Delphi 5 legacy app that makes calls to a DLL (also written in D5), passing a string which the DLL can modify if required.
I have the code to both …
1
vote
3answers
181 views
(Delphi) Call DLL with function pointer parameter
Hi everyone !
I'm stuck with calling an external DLL and passing a function (pointer) as parameter.
I've recently had different problem of passing some arguments to DLL and you helped.
Hope, someone …
0
votes
3answers
97 views
How to put a relative path for a DLL statically loaded?
Hello every body:
I have a DLL made in Delphi 7/Windows XP that I want to statically load in a host application on Windows (made in Delphi, too). I am using this line of code:
procedure …
2
votes
6answers
226 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 using DLL. After …
1
vote
1answer
62 views
FastMM, stack trace memory for leaks in dynamicly loaded DLL, compiled with runtime packages.
Hi,
I'm using FastMM together with JCL Debug info to trace memory leaks in my application. However I have plugins which are dlls compiled in Delphi, both dlls and main application use common runtime …
5
votes
3answers
121 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 using generics …
2
votes
7answers
291 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 dlls in the path. …
1
vote
4answers
124 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 zoom, int dx, int dy);
…
2
votes
7answers
158 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 Function MyProc Lib …
2
votes
3answers
107 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 invocations I would like to …
3
votes
4answers
188 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 to modify the main …
0
votes
2answers
112 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 return - or is …
1
vote
4answers
319 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])
{
iCurrWin=0;
…
1
vote
4answers
235 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;
};
SCRAPER_API bool …
