active questions tagged delphi+dll - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T06:14:51Z http://stackoverflow.com/feeds/tag/delphi+dll http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1828185/how-to-put-a-relative-path-for-a-dll-statically-loaded 0 How to put a relative path for a DLL statically loaded? MLB 2009-12-01T19:04:46Z 2009-12-02T16:33:47Z <p>Hello every body:</p> <p>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:</p> <p>procedure Prepare_HTML_Email(var MailMessage : TIdMessage; const FileAddress, aDetail, aAlarmType : String); stdcall; external DLL_ADDRESS;</p> <p>where DLL_ADDRESS must be the location the DLL is. But at this point I have a problem. The host application is a service, so it is running in C:\WINDOWS\System32, but I want to put the DLL in another directory, not in C:\WINDOWS\System32. The "external" keyword doesn't let to follow it with a function, it only admits a constant expression. So, How can I get the path of the DLL????</p> http://stackoverflow.com/questions/1829156/fastmm-stack-trace-memory-for-leaks-in-dynamicly-loaded-dll-compiled-with-runti 1 FastMM, stack trace memory for leaks in dynamicly loaded DLL, compiled with runtime packages. michal 2009-12-01T21:47:21Z 2009-12-01T23:29:22Z <p>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 packages. Now, when I'm shutting down the application, it generates memory leaks report in text file which is fine, but it contains stack traces <strong>only for main application</strong>. If memory leak occurs in plugin dll, the stack trace leads to LoadPlugins; procedure in main application! Of course my plugins contain JCL debug data (it's inserted into .dll binary).</p> <p>Where is the problem? Is that because of runtime packages usage? Or some switch (define) which I forgot to enable/disable? Thanks in advance</p> http://stackoverflow.com/questions/1819180/delphi-call-dll-with-function-pointer-parameter 1 (Delphi) Call DLL with function pointer parameter benjamin 2009-11-30T11:10:30Z 2009-11-30T17:56:48Z <p>Hi everyone !</p> <p>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 know how to do this as well....</p> <p>Here's function declaration in DLL (cpp) that needs to be called from Delphi:</p> <pre> <code> typedef void (*PTR_Allocate)(char**, unsigned long*); typedef void (*PTR_Deallocate)(char*); extern "C" export_dll_function void SetAllocateFunction(PTR_Allocate); extern "C" export_dll_function void SetDeallocateFunction(PTR_Deallocate); void Allocate(char** pbuffer, unsigned long* psize) { *psize = *psize * 2; *pbuffer = new char[*psize]; } void Deallocate(char* buffer) { delete[] buffer; } </code> </pre> <p>Could you please be so kind to help me rewrite this in Delphi (7) ?</p> <p>Here's what I've tried and it throws an exception ("External exception"):</p> <pre> <code> type PByte = ^TByte; TByte = array of byte; TFunc = function(var pbuffer: PByte; var psize: Cardinal): integer; cdecl; Procedure _SetAllocateFunction(var f: TFunc); cdecl; implementation function Allocate(var pbuffer: PByte; var psize: Cardinal): Integer; cdecl; begin psize := psize * 2; GetMem(pbuffer, psize); end; var Func: TFunc; Func := @Allocate; _SetAllocateFunction(Func); </code> </pre> <p>Thank you very much !</p> http://stackoverflow.com/questions/1700366/loading-a-delphi-object-run-time-using-bpl 2 Loading a Delphi Object Run Time using BPL WishKnew 2009-11-09T11:01:54Z 2009-11-26T23:01:23Z <p>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 searching in delphi.about.com, I found that instead of using DLL, I can use BPL. It is a DLL for Delphi. The problem is almost all examples I found is only telling how to export a function. I want to dynamically load the BPL, and whenever I replace the BPL, I can get the latest algorithm of the class, not only the functions I export.</p> <p>Article I have read:<br> - <a href="http://delphi.about.com/od/objectpascalide/a/bpl%5Fvs%5Fdll.htm" rel="nofollow">http://delphi.about.com/od/objectpascalide/a/bpl%5Fvs%5Fdll.htm</a><br> - <a href="http://stackoverflow.com/questions/1192734/plugins-system-for-delphi-application-bpl-vs-dll">http://stackoverflow.com/questions/1192734/plugins-system-for-delphi-application-bpl-vs-dll</a><br> - <a href="http://delphi.about.com/library/weekly/aa012301a.htm" rel="nofollow">http://delphi.about.com/library/weekly/aa012301a.htm</a></p> <p>Any URL or SAMPLE how to create a BPL from scratch to encapsulate a component or a class is greatly appreciated.</p> <p><hr></p> <p>Dear Guru,</p> <p>Suppose I have code like this:</p> <pre><code>unit unitA; interface type B = class(TObject) public procedure HelloB; end; A = class(TObject) public function GetB: B; function HelloA: String; procedure Help; end; implementation uses Dialogs; { B } procedure B.HelloB; begin ShowMessage('B'); end; { A } function A.GetB: B; begin Result := B.Create; end; function A.HelloA: String; begin Result := 'Hello, this is A'; end; procedure A.Help; begin //do something end; end. </code></pre> <p>I want to export all public methods of A. How to make it a DLL? How to use it from another unit where to import it? let's say:</p> <pre><code> var a: A; a := A.Create; a.GetB; showMessage(a.HelloA); </code></pre> <p>A is not declared in the unit (it is in the DLL). Please advise.</p> <p><hr></p> <p>Hurray. I got it last night. All I have to do is make the object implement an interface which is used in the caller unit to catch the instance of object returned by the DLL.</p> <p>Thank you all.</p> http://stackoverflow.com/questions/1796777/delphi-call-a-dll 1 Delphi call a DLL unknown (google) 2009-11-25T13:02:19Z 2009-11-26T08:39:20Z <p>I have a DLL and wan't to call it from delphi</p> <pre><code>extern "C" export_dll_function int RetScreen(int number, char** pbuffer, unsigned long* psize, IMAGE_RESOLUTION resolution, float zoom, int dx, int dy); [DllImport("API.DLL", EntryPoint = "_RetScreen")] public static extern int pRetScreen(int number, ref byte[] pdata, ref long size, int res, float zoom, int dx, int dy); </code></pre> <p>which delphi type refers to char** pbuffer for the prototype ??? (it is an image)</p> http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe 2 Use SSL with Delphi yet still having a single exe plainth 2009-11-19T09:29:16Z 2009-11-20T11:12:23Z <p>Hi,</p> <p>We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe. </p> <p>We know that the default Indy handler requires to have the dlls in the path. Extracting the Dlls from one of the EXE's resources would be the last resort.</p> <p>Any better ideas?</p> http://stackoverflow.com/questions/1746163/what-principles-should-be-followed-to-make-a-dll-created-using-delphi-works-well 5 What principles should be followed to make a DLL created using Delphi works well in other Delphi version? WishKnew 2009-11-17T02:04:47Z 2009-11-17T17:00:20Z <p>After <a href="http://stackoverflow.com/questions/1700366/loading-a-delphi-object-run-time-using-bpl" title="A Question about BPL vs DLL">this question</a>, 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 feature in RAD2010 and make a dll which has a function that return an instance of it. When I tried to use the dll using BDS2006 or Delphi 6, the DLL didn't work as expected. But if I use RAD2010 in other computer, there is no issue. Is it caused by using the feature that not available in previous Delphi version (the stack&lt;> stuffs?)? For string matters, I already follow the comment guidance in the library file, that I put ShareMem in both library first uses clause and my project. And I have copied borlndmm.dll from RAD2010 to the same folder where I tried the DLL using BDS2006. It didn't crash, but it didn't work es expected. A function return an empty string when in RAD2010 environment it worked very well.</p> <p>Once again, I have a question : what principles should be followed in order to make an encapsulation of a class in a dll compatible to other version of Delphi? Thank you in advance. (For encapsulating functions in a dll when no OOP is used, I have no issued for other version of Delphi).</p> http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking 2 How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? DR 2009-11-09T08:29:37Z 2009-11-09T15:44:12Z <p>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.</p> <p>This is the VB6 declaration:</p> <pre><code>Declare Function MyProc Lib "mylib.dll" (ByVal Param As String) As String </code></pre> <p>And this the Delphi implementation stub in <code>mylib.dll</code>:</p> <pre><code>function MyProc(AParam: PChar): PChar; stdcall; var ReturnValue: string; begin ReturnValue := GetReturnValue(AParam); Result := ???; end; </code></pre> <p>What do I have to return here? Who will free the memory of the returnd PChar string?</p> <p><strong>EDIT:</strong> I'm asking about Delphi 2005 (<code>PChar</code> = <code>PAnsiChar</code>)</p> http://stackoverflow.com/questions/1696077/how-to-debug-a-dll-called-from-java-in-delphi 2 How to debug a DLL called from Java in Delphi? mjustin 2009-11-08T11:20:55Z 2009-11-08T16:25:47Z <p>With Delphi I wrote a DLL which can be called from Java via <a href="https://jna.dev.java.net/" rel="nofollow">JNA (Java Native Access)</a>. Methods in this DLL are just simple operations, but for future use and more complex invocations I would like to know how I can use the Delphi debugger, if the DLL is called from Java directly (or from the Java IDE).</p> http://stackoverflow.com/questions/1676576/how-to-pass-and-return-objects-to-and-from-a-dll 3 How to pass and return objects to and from a DLL? MLB 2009-11-04T20:59:58Z 2009-11-08T16:08:09Z <p>Hello everybody...</p> <p>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 app. So, I imagine developing the subsystem in a DLL is a (good??) idea... i am programming in Windows XP, Delphi 7. I did read DLLs only return basic data type, but there must to be a way to do that...</p> <p>Best regards.</p> http://stackoverflow.com/questions/553755/idl-odl-midl-dlls-but-not-com-if-i-can-help-it 0 IDL, ODL, MIDL, DLLs but not COM if I can help it. boost 2009-02-16T15:50:56Z 2009-11-08T13:15:56Z <p>Using <a href="http://www.powervb.com/" rel="nofollow">Matt Curland</a>'s Type Library Editor, I wrote a Typelib for Nick Yakowlew's <a href="http://chsdet.sourceforge.net" rel="nofollow"><code>Charset Detector Library</code></a>. This is a standard DLL (written in Delphi as it happens) and not a COM DLL at all.</p> <p>Up until this point I had been building ODL and thus TLB files "by hand". The benefit of this was that I could get Intellisense working in Visual Studio 6 (esp. VB6) and also be able to pass widestrings to DLLs without said strings being mangled into ANSI in the process. Once I had generated the TLB from the ODL using MIDL, I had but to register the TLB using <code>regtlib</code>, add a reference to that typelib in VB6 and cut code. And once the binary had been built, I didn't need to have the typelib around. </p> <p>The typelib made by Curland's tool seems to work a little differently. It forces me to have the typelib registered for the binary to access the DLL. I exported the TLB to IDL and, well it looks a bit different to the ODL I've been writing. For one thing, there are typedefs and structs and enums. Okay, I put those in there via Curland's TLE and they need to remain. But I don't want to have to register the TLB -- I want to do things the old way.</p> <p>So what do I do to the IDL below, to make it the kind of ODL I'm familiar with, yet maintain the functionality, all without needing the TLB to be registered once the binary has been produced?</p> <pre><code>// Generated .IDL file (by the OLE/COM Object Viewer) // // typelib filename: chsdet.tlb [ uuid(316A83D7-8BF4-490E-BDDE-75EBC332C355), version(1.0), helpstring("Charset Detector - as the name says - is a stand alone executable module for automatic charset detection of a given text.\r\n\t\r\nIt can be useful for internationalisation support in multilingual applications such as web-script editors or Unicode editors.\r\n\t\r\nGiven input buffer will be analysed to guess used encoding. The result can be used as control parameter for charset conversation procedure.\r\n\t\r\nCharset Detector can be compiled (and hopefully used) for MS Windows (as dll - dynamic link library) or Linux.\r\n\t\r\nBased on Mozilla's i18n component - http://www.mozilla.org/projects/intl/. \r\n\r\nCharset Detector is open source project and distributed under Lesser GPL.\r\nSee the GNU Lesser General Public License for more details - http://www.opensource.org/licenses/lgpl-license.php\r\n\r\nNikolaj Yakowlew \xFFFFFFA9 2006-2008 \r\nTypeLib by Bruce M. Axtens, 2008.") ] library CHSDET { // TLib : // Forward declare all types defined in this typelib [ dllname("CHSDET.dll"), version(1.0), helpstring("Functions in CHSDET.DLL") ] module CHSDETFunctions { [entry(0x60000000), helpstring("Returns rAbout record (qv)")] void _stdcall GetAbout([in, out] rAbout* AboutRec); [entry(0x60000001), helpstring("Reset detector. Prepares for new analysis.")] void _stdcall Reset(); [entry(0x60000002), helpstring("Analyse given buffer of specified length. Return value is of eHandleDataErrors, either NS_ERROR_OUT_OF_MEMORY (Unable to create internal objects) or NS_OK. Function can be called more that one time to continue guessing. Charset Detector remembers last state until Reset called.")] void _stdcall HandleData( [in] BSTR aBuf, [in] short aLen, [out, retval] short* retVal); [entry(0x60000003), helpstring("Returns either TRUE (Charset Detector is sure about text encoding.) or FALSE. NB: If input buffer is smaller then 1K, Charset Detector returns FALSE.")] void _stdcall IsDone([out, retval] short* retVal); [entry(0x60000004), helpstring("Signal data end. If Charset Detector hasn't sure result (IsDone = FALSE) the best guessed encoding will be set as result.")] void _stdcall DataEnd(); [entry(0x60000005), helpstring("Returns guessed charset as rCharsetInfo record")] void _stdcall GetDetectedCharset([out, retval] rCharsetInfo* retVal); [entry(0x60000006), helpstring("Returns all supported charsets in form "0x0A Name - CodePage"")] void _stdcall GetKnownCharsets( [in, out] long* sList, [out, retval] long* retVal); [entry(0x60000007), helpstring("Return eBOMKind value matching byte order mark (if any) of input data.")] void _stdcall GetDetectedBOM([out, retval] eBOMKind* retVal); [entry(0x60000008), helpstring("Remove CodePage from consideration as a possible match")] void _stdcall DisableCharsetCP([in] long CodePage); }; typedef [uuid(91694067-30AB-44A9-A210-F5602935475F)] struct tagrAbout { long lMajor; long lMinor; long lRelease; long sAbout; } rAbout; typedef [uuid(3C8B7420-D40B-458B-8DE8-9B3D28607396)] enum { BOM_Not_Found = 0, BOM_UCS4_BE = 1, BOM_UCS4_LE = 2, BOM_UCS4_2143 = 3, BOM_UCS4_3412 = 4, BOM_UTF16_BE = 5, BOM_UTF16_LE = 6, BOM_UTF8 = 7 } eBOMKind; typedef [uuid(9B231DEF-93FB-440D-B06B-D760AECE09D0)] struct tagrCharsetInfo { long Name; short CodePage; long Language; } rCharsetInfo; typedef enum { NS_OK = 0, NS_ERROR_OUT_OF_MEMORY = -2147024882 } eHandleDataErrors; }; </code></pre> http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls 0 How do I (or if I can't) use Variants on simple DLLs? Fabricio Araujo 2009-11-03T13:15:31Z 2009-11-03T14:29:01Z <p>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 better to go to an string-only representation? </p> <p>What is better, from language-agnostic POV (the consumer is not made with Delphi - but all will run in Windows)?</p> http://stackoverflow.com/questions/100596/best-resources-for-converting-c-c-dll-headers-to-delphi 4 Best resources for converting C/C++ dll headers to Delphi? Graza 2008-09-19T08:56:53Z 2009-11-01T14:38:43Z <p>A rather comprehensive site explaining the difficulties and solutions involved in using a dll written in c/c++ and the conversion of the .h header file to delphi/pascal was posted to a mailing list I was on recently, so I thought I'd share it, and invite others to post other useful resources for this, whether they be links, conversion tools, or book/paper titles.</p> <p>One resource per answer please, so we'll end up with the most popular/best resources bubbling to the top.</p> http://stackoverflow.com/questions/1587410/delphi-access-violation-after-calling-function-from-external-dll-c 1 Delphi: Access violation after calling function from external DLL (C++) Mikhail 2009-10-19T07:46:02Z 2009-10-21T23:30:01Z <p>There's a function, written in C++ and compiled as DLL, which I want to use in my Delphi application.</p> <p><strong>Scraper.cpp:</strong></p> <pre><code>SCRAPER_API bool ScraperGetWinList(SWin winList[100]) { iCurrWin=0; memset(winList,0,100 * sizeof(SWin)); return EnumWindows(EnumProcTopLevelWindowList, (LPARAM) winList); } </code></pre> <p><strong>Scraper.h:</strong></p> <pre><code>#ifdef SCRAPER_EXPORTS #define SCRAPER_API __declspec(dllexport) #else #define SCRAPER_API __declspec(dllimport) #endif struct SWin { char title[512]; HWND hwnd; }; extern "C" { SCRAPER_API bool ScraperGetWinList(SWin winList[100]); } </code></pre> <p>This is how I declare the function in the <strong>Delphi application</strong>:</p> <pre><code>type tWin = record Title: Array [0..511] of Char; hWnd: HWND; end; tWinList = Array [0..99] of tWin; function ScraperGetWinList(var WinList: tWinList): Boolean; stdcall; external 'Scraper.dll'; </code></pre> <p>The function works, but when it's finished, I receive Debugger Fault Notification: <em>Project ... faulted with message: ''access violation at 0x0012f773: write of address 0xffffffc0'. Process Stopped. Use Step or Run to continue.</em></p> <p>If I add <code>__stdcall</code> (after <code>SCRAPER_API bool</code>) in Scraper.cpp and Scraper.h, then the Delphi application doesn't start at all: <em>The procedure entry point ScraperGetWinList could not be located in the dynamic link library Scraper.dll.</em></p> http://stackoverflow.com/questions/1596704/how-to-return-an-instance-from-a-dll 3 How to return an instance from a DLL? Yulien 2009-10-20T19:08:22Z 2009-10-21T08:05:25Z <p>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 storing images. I wrote a function that I want to return an Image from the TImageList (from the DLL to the host application. How can I do this?</p> <p>Thanks, Yulién.</p> http://stackoverflow.com/questions/492611/why-cant-my-program-find-its-dlls-on-vista-64 7 Why can't my program find its DLLs on Vista 64? Mason Wheeler 2009-01-29T17:29:32Z 2009-10-20T20:25:45Z <p>I recently got a new laptop. Unfortunately, it came with Vista. It's been one big hassle getting it to work, and the comp has hardware components for which there are no XP drivers, so I can't "upgrade" to an OS that actually works. I've mostly gotten things working, but one particularly odd problem has me stumped.</p> <p>I installed Delphi and tried to build a project. It compiled, but wouldn't run. "This application failed to start because sdl.dll was not found." Fair enough. So I grabbed SDL.dll and put it in the <code>C:\windows\system32</code> folder. (Using Vista 64-bit Home Premium. This is a 32-bit dll, though, so I put it in the 32 folder instead of the 64 one.)</p> <p>Hit Run again. Same problem. But why? That's where it goes, right? And <code>C:\windows\system32</code> is in the system path. Anyone know why it can't link to the DLL?</p> <p>(And yes, I know that I can work around the problem by putting the DLL in the same folder as the .exe. I'm currently doing that as a workaround. It's a bad idea in the long term, though, because I have a handful of different projects that all require SDL.)</p> http://stackoverflow.com/questions/1584421/cant-use-dll-written-in-c-in-delphi-the-procedure-entry-point-could-not-be 1 Can't use DLL (written in C++) in Delphi: The procedure entry point could not be located Mikhail 2009-10-18T09:02:45Z 2009-10-19T09:03:26Z <p>I've compiled a DLL in Visual Studio (the source code is in C++, which I barely understand). Here's a piece of <strong>Scraper.h</strong>:</p> <pre><code>struct SWin { char title[512]; HWND hwnd; }; SCRAPER_API bool ScraperGetWinList(SWin winList[100]); </code></pre> <p>Now I'm trying to use the above function in my Delphi application:</p> <pre><code>type tWin = record title: String; hwnd: HWND; end; function ScraperGetWinList(var WinList: Array of tWin): Boolean; external 'Scraper.dll'; var myWinList: Array [1..100] of tWin; procedure TMainForm.GetWinListButtonClick(Sender: TObject); begin ScraperGetWinList(myWinList); ... </code></pre> <p>The project doesn't compile, and I get the following message: <em>The procedure entry point ScraperGetWinList could not be located in the dynamic link library: Scraper.dll</em>.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1530548/how-to-call-a-dll-with-pascal-calling-convention-from-delphi 0 How to call a dll with "_pascal calling convention" from Delphi ? berocoder 2009-10-07T09:36:49Z 2009-10-08T08:30:51Z <p>I have a dll RL6_dll.dll from a routing program RouteLogix that is used to plan trucks etc.</p> <p>Now we want to use that from Delphi 2007. We have a c++ header for the dll and a working example that use it in C++-Builder.</p> <p>Here is an example from that file:</p> <pre><code>// Use this routine to find the directory where the data-xxx subdirectories // are expected. // char * vszBuf - address of a character array to receive the (null-terminated) path. // int nBufSize - is the size of the array // (internally we allow paths up to 256 characters long) DllFn(void) RL6_GetLocalGeoDir(char *vszBuf, int nBufSize); </code></pre> <p>My try from Delphi:</p> <pre><code>procedure TfrmRL6Xml.Button1Click(Sender: TObject); var s1: PChar; IntValue : Integer; RL6_GetLocalGeoDir: function(vszBuf: pchar; nBufSize: Integer): integer; stdcall; begin handle := LoadLibrary('C:\Carp\RL6_app2\rl6dll\RL6_DLL.dll'); if handle &lt;&gt; 0 then begin @DllFn := GetProcAddress(handle, 'RL6_PREINIT'); @RL6_GetLocalGeoDir := GetProcAddress(handle, 'RL6_GETLOCALGEODIR'); s1 := ' '; IntValue := length (s1); RL6_GetLocalGeoDir (s1, IntValue); showMessage(s1); end; end; </code></pre> <p>So now I expect s1 contains a string, but instead the functions seems handle IntValue as string. It seems like the s1 and IntValue parameters are exchanged. We have of course tried RL6_GetLocalGeoDir (IntValue, s1) but that didn't work either. Any suggestions how to call it ?</p> http://stackoverflow.com/questions/1511883/is-it-safe-to-pass-a-pointer-to-a-method-as-a-member-of-a-record 0 Is it safe to pass a pointer to a method as a member of a record? yozey 2009-10-02T21:27:24Z 2009-10-02T23:18:39Z <p>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 be safe?</p> http://stackoverflow.com/questions/1042686/delphi-dynamic-dll-global-variable 5 Delphi Dynamic Dll - global variable Crudler 2009-06-25T07:57:30Z 2009-10-01T12:49:33Z <p>Hi,</p> <p>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.</p> <p>I have no control over the host app. I can only work with within the dll. Is there a way I can keep certain variables in memory so that I can reuse them within each function? Obviously a global varable gets cleared when the dll is unloaded by the host app. Saving the dll to file sounds very messy!</p> <p>Can anyone suggest a way of assigning a variable that i can keep global?</p> <p>Thanks</p> http://stackoverflow.com/questions/1496318/how-to-use-c-classes-exported-by-a-dll-in-delphi 2 How to use C++ Classes exported by a dll in Delphi Tobias Langner 2009-09-30T06:00:51Z 2009-09-30T06:50:49Z <p>Hi,</p> <p>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, ...)?</p> http://stackoverflow.com/questions/876943/my-app-hangs-while-being-debugged 0 My app hangs while being debugged Alistair Ward 2009-05-18T09:49:34Z 2009-09-17T13:00:01Z <p>I am using Delphi 2009 on Vista Ultimate 64 bit.</p> <p>I run my application from within the Delphi IDE, and after some time (a minute or 2) my application will hang.</p> <p>Looking at the event log, the hang is associated with a thread exiting. It is not the main thread, but a thread that has been started just after the module RSAENH.DLL has been loaded.</p> <p>The app runs normally outside the debugger.</p> <p>Further info: the app makes extensive use of OpenGL, including shaders and some OpenGL 3 features.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1420744/delphi-and-dll-versions 1 Delphi and dll versions Dan Kelly 2009-09-14T10:28:21Z 2009-09-14T20:22:35Z <p>First off, forgive me if this is a schoolboy question :)</p> <p>We have a number of applications that user Delphi dbxpress to access a MySQL 5 server. These applications were all written on Delphi 2007 against a libmysql.dll version 5.0.xx (actual version forgotten)</p> <p>This dll has been distributed to all users and is working fine.</p> <p>I have just upgraded to Delphi 2010 and discovered that that needs to user libmysql 5.1.xx to see MySQL servers.</p> <p>Trouble is, if I replace the 5.0.xx libmysql with the newer one, existing applications will not startup. On the flip side Delphi 2010 will not work with the older dll.</p> <p>Whilst I can get both versions of the IDE (2007 and 2010) to work with the database by placing the appropriate dll versions in the \bin folder of the application, this doesn't solve the problem for the users.</p> <p>Any suggestions on how I can get the applications to look for the appropriate version of the dll.</p> <p>We were hoping to not have to move all our applications to Delphi 2010 immediately...</p> http://stackoverflow.com/questions/1401825/callback-from-a-c-dll-to-a-delphi-application 0 Callback from a C++ dll to a delphi application rptony 2009-09-09T20:11:56Z 2009-09-09T20:54:26Z <p>Application is written in delphi 2010 and the underlying dll is a C++ dll. </p> <p>In ideal case, when your application is in C++; The dll makes a callback to an application when an event occurs. The callback is implemented through an interface. Application developers implements the abstract c++ class and pass the object to the dll. The dll will then make a callback to a member function of your implemented class. A classic callback pattern it is.</p> <p>But how do I pass a delphi object to the dll for it to make a callback. </p> http://stackoverflow.com/questions/1398763/delphi-pchar-to-c-const-char 2 Delphi PChar to C++ const char* rptony 2009-09-09T10:16:07Z 2009-09-09T11:42:17Z <p>I am trying to use a C++ dll from a native program. I am following the virtual method scenario as explained <a href="http://rvelthuis.de/articles/articles-cppobjs.html" rel="nofollow">here</a> </p> <p>Lets say my C++ function signature is of the form</p> <pre><code>int Setup(const char* szIp, const char* szPort); </code></pre> <p>And the corresponding delphi signature is</p> <pre><code>function Setup(ip, port: PChar):Integer: virtual; cdecl; abstract; </code></pre> <p>And somewhere from the delphi program i can call</p> <pre><code>pObj.Setup('192.168.1.100', '97777'); </code></pre> <p>The control comes into the dll, but szIp and szPort formal parameters only receives the first character of the ip and port that I had passed from the delphi program.</p> <p>I understand that it has to do with null terminating the string properly in delphi. So i had tried the following too.</p> <pre><code>var pzIp, pzPort: PChar; szIp, szPort: string; begin szIp := '192.168.1.2'; szPort := '9777'; //initilize memory for pchar vars GetMem(pzIp, Length(szIp)+1); GetMem(pzPort, Length(szPort)+1); //null terminate the strings pzIp[Length(szIp)+1] := #0; pzPort[Length(szPort)+1] := #0; //copy strings to pchar StrPCopy(pzIp, szIp); StrPCopy(pzPort, szPort); end. </code></pre> <p>This a'int working either. When i <code>Writeln</code> <code>pzIp</code> and <code>pzPort</code> I get strange results. </p> <p>Forgot to tell, all member functions from the C++ dll are compiled with <code>__stdcall</code> and exported properly</p> http://stackoverflow.com/questions/1352522/using-delphi-applications-memory-manager-in-a-delphi-dll-without-recompiling-th 0 Using delphi application's memory manager in a delphi DLL (without recompiling the application) Andrey 2009-08-29T22:09:22Z 2009-09-01T05:39:21Z <p>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 properties). The classic problem is that passing strings (and objects) between application and DLL is problematic due to different memory managers used in both (this might lead to memory issues, e.g. DLL's memory manager would try to free the memory allocated by Application's memory manager).</p> <p>Is there a way to set DLL's memory manager to application's memory manager in a way that would not depend on delphi version? Any thoughts?</p> http://stackoverflow.com/questions/739673/is-it-safe-to-call-a-dll-function-from-multiple-threads-in-a-single-application 2 Is it safe to call a dll function from multiple threads in a single application? norgepaul 2009-04-11T07:26:17Z 2009-08-31T23:47:05Z <p>I am writing a server application in Delphi 2009 that implements several types of authentication. Each authentication method is stored in a separate dll. The first time an authentication method is used the appropriate dll is loaded. The dll is only released when the application closes.</p> <p>Is it safe to access the dlls without any form of synchronisation between the server threads (connections)?</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results 5 Calling a Delphi DLL from C# produces unexpected results Doug Hays 2009-02-05T21:14:27Z 2009-08-28T10:04:43Z <p>I have a Delphi DLL that I did not write, but need to call from a C# ASP.NET 3.5 app. Here is the function definition I got from the developers:</p> <pre><code>function CreateCode(SerialID : String; StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod : Word; CodeType,RecordNumber,StartHour,EndHour : Byte) : PChar; external 'CreateCodeDLL.dll'; </code></pre> <p>And here is my C# code:</p> <pre><code>[DllImport( "CreateCodeDLL.dll", CallingConvention = CallingConvention.StdCall, CharSet=CharSet.Ansi)] public static extern IntPtr CreateCode( string SerialID, UInt16 StartDateOfYear, UInt16 YearOfStartDate, UInt16 YearOfEndDate, UInt16 DatePeriod, Byte CodeType, Byte RecordNumber, Byte StartHour, Byte EndHour); </code></pre> <p>And finally, my call to this method: </p> <pre><code>//The Inputs String serialID = "92F00000B4FBE"; UInt16 StartDateOfYear = 20; UInt16 YearOfStartDate = 2009; UInt16 YearOfEndDate = 2009; UInt16 DatePeriod = 7; Byte CodeType = 1; Byte RecordNumber = 0; Byte StartHour = 15; Byte EndHour = 14; // The DLL call IntPtr codePtr = CodeGenerator.CreateCode(serialID, StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod, CodeType, RecordNumber, StartHour, EndHour); // Take the pointer and extract the code in a string String code = Marshal.PtrToStringAnsi(codePtr); </code></pre> <p>Every time I re-compile this exact code and run it, it returns a different value. The expected value is a 10-digit code comprised of numbers. The returned value is actually 12 digits. </p> <p>The last important piece of information is that I have a test .EXE that has a GUI that allows me to test the DLL. Every test using the .EXE returns the same 10-digit number (the expected result).</p> <p>So, I have to believe that I have declared my call to the DLL incorrectly. Thoughts?</p> http://stackoverflow.com/questions/1279886/delphi-5-calling-c-dll-causing-access-violation 1 Delphi 5 calling C++ dll causing Access Violation beef 2009-08-14T20:00:24Z 2009-08-14T20:04:09Z <p>Here is the Delphi code calling the C++ dll...</p> <pre><code>implementation {$R *.DFM} procedure CallMe(x: Integer); stdcall; external 'CppWrapper.dll'; procedure TForm1.Button1Click(Sender: TObject); begin CallMe(1); end; end. </code></pre> <p>Here is the error message...(Access Violation at 00000001. Read of Address 00000001.) <img src="http://img90.yfrog.com/i/errorhck.jpg" alt="alt text" /></p> <p>The CallMe procedure executes but after execution I receive the error message. I do have the C++ code if I need to post it as well.</p> http://stackoverflow.com/questions/1265848/integrate-delphi-isapi-dll-into-an-asp-net-web-application 0 Integrate Delphi ISAPI DLL into an ASP.NET web application balexandre 2009-08-12T12:27:28Z 2009-08-14T09:57:09Z <p>Hi guys,</p> <p>We have all the code in Delphi and it is hard to <strong>create a new</strong> ASMX / SVC File directly in .NET because it uses encryption and weird stuff :) as it would take around 2 weeks to convert and to test...</p> <p>Because of that we agreed that will keep the Delphi code and find a way to communicate between the ASP.NET application and this Delphi code, so we generated a Delphi WebService that added to IIS is an ISAPI DLL.</p> <p><strong>My first question was:</strong></p> <p>Do I really need to set up IIS and install this WebService alone, or can I use it as a part of my project (just like an ASMX file) using any special trick?</p> <p><strong>and my 2nd question</strong>, it is been hard for me to provide the fellow information on how to convert pascal into .NET so we could, using the pascal code, output an ASMX for example... I can't find anything to do this.</p> <p>We have Delphi Studio 2009 and it mention in several documents that we can do .NET (how?) and there is Delphi for .NET (are we talking about and only Delphi Prism here?).</p> <p>Thank you guys!</p> <p><hr /></p> <p><strong>New question that will resolve my 2 questions</strong></p> <p>How can I generate an ASMX (.NET Web Service) or SVC (.NET WCF Service) from a Delphi code? I'm reading about <a href="http://www.embarcadero.com/delphi-prism" rel="nofollow">Delphi Prism</a> but I can't still figure it out.</p>