active questions tagged dll - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:24:44Z http://stackoverflow.com/feeds/tag/dll http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821326/tomcat-not-recognizing-the-dll-files 0 Tomcat not recognizing the DLL files cedar715 2009-11-30T17:55:36Z 2009-11-30T18:03:49Z <p>i've an application which am trying to deploy in Window's Tomcat 5.5 - as an Axis Webservice. The application uses few DLL files, which I've placed the in the dir - $TOMCAT_HOME\common\endorsed\ and specified the same in the <code>java.library.path</code>. </p> <p>But the DLL files are not recognized by the Tomcat. Following Exception is thrown:</p> <pre><code>java.lang.UnsatisfiedLinkError: no FCCJavaClientProxy in java.library.path </code></pre> <p>I also tried by putting the DLLs in a jar files..but no use.</p> <p>Following is the batch file I created to start a Tomcat.</p> <pre><code>set CATALINA_HOME=C:\Program Files\Apache Software Foundation\Tomcat 5.5\ set JAVA_HOME=C:\Program Files\Java\jdk1.5.0_15\ set JAVA_OPTS=-Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\endorsed;D:\TeamCenter\fms; set FMS_HOME=D:\TeamCenter\fms call tomcat5.exe </code></pre> 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/1820496/visual-studio-help-to-fix-circular-reference 0 Visual Studio: Help to fix circular reference! serhio 2009-11-30T15:29:55Z 2009-11-30T16:04:47Z <p>Hello</p> <p>Is there a way in Visual Studio 2005 to find all the references of a project?</p> <p>I have a solution with multiple projects (dll's). When referencing in the project B the project A VS tells me that it can't add this reference, because of a "circular referencing".</p> <p>However, the project A does not contain a direct reference to B. Apparently, there a intermediate references in A that references B.</p> <pre><code>A &lt;=?= B (circular ref.) A =?=&gt; X(?) =?=&gt; B ( maybe there is an X that references B) </code></pre> <p>How to find this X?</p> <p>=== EDIT(For the curious) :) There is 63 projects in the solution.</p> http://stackoverflow.com/questions/1408237/how-to-access-filesystem-from-within-a-net-dll-called-by-classic-asp 0 How to access filesystem from within a .NET dll called by classic ASP? Jason 2009-09-10T23:26:14Z 2009-11-30T11:00:04Z <p>I made a .NET dll and put it in system32 folder and RegAsm it in a win2003 server.</p> <p>One of the API of this dll is to create a file in c:/ folder. And when I call this API from a classic ASP script, always get this error </p> <p>System.IO.__Error.WinIOError</p> <p>So the dll or asp process does not have the sufficient access privilege? How to give it the write access?</p> <p>Thank you</p> <p>[Edit] The dll is called in an ASP page, running in a browser. </p> <p>[Edit] Anyone can help?</p> http://stackoverflow.com/questions/1814994/access-97-external-dll-gets-outdated-data-what-can-i-do 0 Access 97 - external dll gets outdated data - what can i do? Thomas G. Liesner 2009-11-29T08:23:35Z 2009-11-29T21:42:19Z <p>Hello,</p> <p>In my current job i have to fix some issues in an old Access97-application. My last problem is this: Some reports are created with an external dll and sometimes the reports are wrong. They contain data from the previous call or the detail data is missing and so on. If i start the same report without any change on the data the reports are correct. </p> <p>The cause for this is in my opionion, that the external dll gets outdated data from access instead the current data, which is written just before calling the dll. Is there any documented way to flush the internal buffers from access or do i have to add some wait cycle in the hope, that it will avoid this problem in most of the times?</p> <p>Thx,<br> Thomas G. Liesner</p> http://stackoverflow.com/questions/1816631/how-to-read-a-display-name-from-a-dll 0 How to read a display name from a DLL? Zyphrax 2009-11-29T20:14:31Z 2009-11-29T20:58:25Z <p>In the registry and in theme files you'll notice a lot of references to DLLs when it comes to display names.</p> <p>For example:</p> <pre><code>[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default] @="Windows" "DispFileName"="@mmres.dll,-5856" </code></pre> <p>I've opened the mmres.dll file in PE Explorer, but I don't see any display names.</p> <p>How can I retrieve the actuale display name behind the <strong>@mmres.dll,-5856</strong> reference in C#?<br> How can I do this efficiently for many references?</p> http://stackoverflow.com/questions/1605640/using-sharedptr-in-dll-interfaces 6 Using shared_ptr in dll-interfaces. Alexey Malistov 2009-10-22T07:56:55Z 2009-11-28T17:23:01Z <p>I have an abstract class in my dll.</p> <pre><code>class IBase { protected: virtual ~IBase() = 0; public: virtual void f() = 0; }; </code></pre> <p>I want to get <code>IBase</code> in my exe-file which loads dll. First way is to create following function</p> <pre><code>IBase * CreateInterface(); </code></pre> <p>and to add the virtual function <code>Release()</code> in <code>IBase</code>.</p> <p>Second way is to create another function</p> <pre><code>boost::shared_ptr&lt;IBase&gt; CreateInterface(); </code></pre> <p>and no <code>Release()</code> function is needed.</p> <p><strong>Questions.</strong></p> <p>1) Is it true that the destructor and memory deallocation is called in the dll (not in exe-file) in <em>the second case</em>?</p> <p>2) Does <em>the second case</em> work well if exe-file and dll was compiled with different compilers (or different settings).</p> http://stackoverflow.com/questions/1810286/weird-behaviour-of-custom-c-bindings-they-run-only-on-my-dev-environment-nowhe 0 Weird behaviour of custom C# bindings, they run only on my dev environment, nowhere else! makism 2009-11-27T19:11:49Z 2009-11-27T21:38:52Z <p>Hello, following my post <a href="http://stackoverflow.com/questions/1795021/writing-a-c-dll-then-wrapping-it-in-c">"Writing a C++ DLL, then wrapping it in C#."</a>, i managed to create a C++ DLL and wrap it in C#, and everything works smooth... Well, only on my dev machine. While the code compiles on other machines too, i just won't run.</p> <p>Some background. I create a dll that uses cvblobslib that is based on opencv. I compiled all dlls/libs for win32 and target machine: x86. The exception that is thrown, is for some opencv call that i make inside my dll:</p> <p><code>Unhandled exception at 0x00dbe012 (cv200.dll) in ConsoleApplication1.exe: 0xC000001D: Illegal Instruction.</code></p> <p>Of course, all dlls and everything all located in the same directory as the c# executable is run from.</p> <p>Any thought and idea would be much appreciated because i am stuck and it's really annoying that it runs on my dev-machine and nowhere else! >.&lt;</p> http://stackoverflow.com/questions/1808315/clr-error-in-dll-release-mode 0 clr error in dll release mode Rahul Somwanshi 2009-11-27T11:53:19Z 2009-11-27T13:26:42Z <p>Hi,</p> <p>I have created one windows service, code is executing in different threading.</p> <p>if i use dll with release mode some times i got clr error, and my service got stopped but it seems working with debug mode dll.</p> <p>can u please tell me the reason behind it.</p> http://stackoverflow.com/questions/1808048/net-assembly-in-bin-folder-isnt-found-by-webservice 0 .NET assembly in bin folder isn't found by webservice Saab 2009-11-27T10:50:37Z 2009-11-27T10:56:02Z <p>I'm trying to deploy a webservice, and everything worked fine, until I changed the version number of one of the referenced dll's.</p> <p>The old version used to be 1.0.0.0 the new one is 1.0.0.1. This assembly is in the GAC (the SharePoint application also uses it) and in de bin folder of the webservice.</p> <p>I have re-compiled the application multiple times (debug and release). I recycled the application pool, I restarted the webserver from IIS manager. I have deleted the temporary files in C:\windows\Microsoft.Net... Nothing helped.</p> <p>I build in Visual Studio 2008, and then I publish from within Visual Studio. The references in VS all look right (version numbers of assemblies).</p> <p>Even if I use reflector, it tells me that the dll refers to the 1.0.0.1 version of the assembly. But the service keep throwing an exception about not being able to load assembly with version number 1.0.0.0.</p> <p>The only quick fix I can figure out is to change the version number to 1.0.0.0. But then I'm not even sure what version of the code really is loaded...</p> <p>By the way I'm running on Windows Server 2008 and using Framework 3.5.</p> http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop 0 C# Best approach for a responsive UI during SQL query using COM interop Lynxy 2009-11-26T20:27:15Z 2009-11-27T04:57:54Z <p>I am making a C# DLL plugin for a EXE written in VB6. I do not have access to the source of the EXE. The DLL itself works and communicates fine with the EXE.</p> <p>Here is the process for a event:</p> <ol> <li>User issues command on EXE which then calls a function in the DLL, passing an object as a parameter</li> <li>DLL processes data which sometimes takes a long time</li> <li><p>The DLL responds by calling a function of the object that was passed. The DLL function itself does not return anything</p> <pre><code>public void DoCommand(object CommandSettings) { //ObjectVB6 is my custom class to allow easy calling of COM methods and properties ObjectVB6 CS = new ObjectVB6(CommandSettings); ... //process data CS.CallMethod("MyReply", args); } </code></pre></li> </ol> <p>My problem is that during long queries (from the DLL), the EXE's UI freezes.</p> <p>What is the best way to prevent this? I have tried using asynchronous MySQL queries, which were no good, and tried using multiple threads, which just run into protected memory issues.</p> <p>Any advice you can provide would be awesome. Been trying to address this issue for days. Thanks.</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/1790284/non-blocking-socket-from-within-a-dll-no-window 1 Non blocking socket from within a DLL (no window) alain13 2009-11-24T14:05:04Z 2009-11-26T14:32:36Z <p>Hi all,</p> <p>I have a DLL wich connects to a server through a single socket. I am facing the following problem : If server's IP address &amp; port are false or server is down, the application using this DLL freezes until half a minute. My idea is to use non-blocking sockets to avoid that problem, by showing a window indicating connection progress, and also allowing to cancel this process. But how could I use WSAAsyncSelect function as I have no window handler ?</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/1798978/how-to-check-if-a-file-is-a-dll 2 How to check if a file is a DLL? PierreBdR 2009-11-25T18:23:39Z 2009-11-26T06:30:45Z <p>Given a file, I want to check if this is a DLL, or a shared object (Linux) or a dylib (Mac OS X), or something different. My main interest is differentiating executable and DLL on Linux and Mac OS X. For windows, the extension should be enough for my problem.</p> <p>I already checked that the magic number technique doesn't work for Linux as executable and shared objects both have the same number.</p> http://stackoverflow.com/questions/1795021/writing-a-c-dll-then-wrapping-it-in-c 0 Writing a C++ DLL, then wrapping it in C#. makism 2009-11-25T06:26:43Z 2009-11-25T10:15:42Z <p>Hello,</p> <p>I am a bit confused about wrapping a c++ dll in c#. What kind of dll should i create? A normal dll or an mfc dll? Should i prefix every proto with "extern..." ? Should i write the functions in a def file?</p> <p>My last effort was in vain, c# would crash with an error like "bad image format", which means that the dll format is not correct?</p> <p>Any help would be much appreciated.</p> <p>Thanks in advance :-)</p> http://stackoverflow.com/questions/1794516/how-do-i-install-visual-studio-dll-files 0 How do I install Visual Studio dll files? Mohit 2009-11-25T03:58:31Z 2009-11-25T04:23:44Z <p>I want use the Scintilla controls and the RadControls for Winforms, but I do not know how to incorporate the files. They are in .dll format? How do I use the controls if they are in .dll format?</p> http://stackoverflow.com/questions/1792465/cant-load-dll-due-to-dependency-issue-with-visual-c-runtime-dll 0 Can't load DLL due to dependency issue with Visual C Runtime DLL Jason 2009-11-24T19:44:53Z 2009-11-24T22:36:34Z <p>I'm trying load a 3rd party DLL but I get an error when attempting to load it. Opening it in Dependency Walker shows that the DLL simply relies on kernel32.dll and msvcr90.dll. However, I get the following error in Dependency Walker when opening this DLL: <code>Error The Side-by-Side configuration information for [full path to the dll that I am loading] contains errors. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem (14001).</code></p> <p>The only copy of msvcr90.dll that exists on the system is one that I copied into the directory that contains my third party DLL. I ran into a very similar problem on another machine and installing the Visual C++ 2008 Redistributable package from Microsoft fixed it. However, I really need to get to the bottom of this as I can't install the redistributable package on all machines that I need this to run on.</p> <p>I've also tried opening the third party DLL in Visual Studio and examined its manifest. In it I can see that it explicitly is dependent upon the SP0 version of the Visual C Runtime library:</p> <pre><code>&lt;assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"&gt;&lt;/assemblyIdentity&gt; </code></pre> <p>However, copying that exact version of the DLL to the machine with the problem still doesn't fix it. What gives?</p> http://stackoverflow.com/questions/1792578/benefits-of-exporting-a-class-from-a-dll-vs-static-library 2 Benefits of exporting a class from a dll vs. static library Steve 2009-11-24T20:04:25Z 2009-11-24T21:34:29Z <p>I have a C++ class I'm writing now that will be used all over a project I'm working on. I have the option to put it in a static library, or export the class from a dll. What are the benefits/penalties for each approach. The only one I can think of is compiled code size which I don't really care about. Thanks!</p> http://stackoverflow.com/questions/1792581/c-from-c-c-function-in-a-dll-returning-false-but-c-thinks-its-true 3 C++ from C#: C++ function (in a DLL) returning false, but C# thinks it's true! Peter J. B. Lewis 2009-11-24T20:04:53Z 2009-11-24T21:28:38Z <p>Hi everyone,</p> <p>I'm writing a little C# app that calls a few functions in a C++ API. I have the C++ code building into a DLL, and the C# code calls the API using DllImport. (I am using a .DEF file for the C++ DLL so I don't need extern "C".)</p> <p>So far the API has one function, which currently does absolutely nothing:</p> <pre><code>bool Foo() { return false; } </code></pre> <p>In C#, I have the following:</p> <pre><code>public class FooAPI { [DllImport("Foo.dll")] public static extern bool Foo(); } ... bool b = FooAPI.Foo(); if (!b) { // Throw an exception } </code></pre> <p>My problem is that, for some reason, b is always evaluating to <strong>TRUE</strong>. I have a breakpoint on if (!b) and the debugger reports it as 'true', irrelevant of whatever the C++ function is returning. </p> <p>Is the C# bool the same as the C++ bool? Though even if this wasn't the case, I still don't get how it would find the return value to be 'true' :)</p> <p>Can anyone help me with this bizarre discrepancy?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1789768/can-i-change-dll-interface-without-recompilation-exe-file 1 Can I change dll-interface without recompilation exe-file? Alexey Malistov 2009-11-24T12:27:01Z 2009-11-24T17:42:41Z <p>I have an abstract class in my DLL.</p> <pre><code>class Base { virtual char * First() = 0; virtual char * Second() = 0; virtual char * Third() = 0; }; </code></pre> <p>This dinamic library and this interface are used for a long time. There is my mistake in my code. Now I want to change this interface</p> <pre><code>class Base { virtual const char * First() const = 0; virtual const char * Second() = 0; virtual char * Third() const = 0; }; </code></pre> <p>Some EXE-program uses my DLL. Will the EXE-program work without recompilation? Consider changes in each line of new interface independently.</p> <p><strong>Note:</strong> of course, EXE-program does not change functions results.</p> http://stackoverflow.com/questions/1786970/debugging-a-dll-from-vs2008-in-vc6 0 Debugging a DLL from VS2008 in VC6 IndianaJ 2009-11-24T00:08:16Z 2009-11-24T00:49:59Z <p>I am currently debugging a project in VC6 (slowly porting it over to VS2008). The project links to a DLL that I have produced in VS2008 with a Debug build. (I know - a strange situation to find myself in.) I need to debug the project in VC6 and step into the calls to the DLL. Even though I have the PDB alongside the DLL, VC6 still reports there is no symbolic info for the DLL when it loads it. Does anyone know why? Is the PDB from VS2008 not loadable by VC6? Any ideas gratefully received...</p> http://stackoverflow.com/questions/1786438/qt-library-event-loop-problems 0 Qt library event loop problems Marc 2009-11-23T22:15:48Z 2009-11-23T22:38:11Z <p>I'm writing a DLL that is used as a plugin by another application and would like to leverage Qt's abilities.<br> I have all of the classes set up, compiling and running, but no signals are being emitted. So it seems as though there's no QEventLoop.</p> <p>Attempt 1:<br> I modified my main class to subclass QThread instead of QObject, and in the run() create a QEventLoop, connect all signals/slots, and exec the thread.<br> But it fails saying that you can't have a QEventLoop without a QApplication.</p> <p>Attempt 2:<br> I modified the main class (still subclassing the QThraed) to instead instantiate a QCoreApplication, connect all signals/slots, then exec the application.<br> Warns that the QApplication was not created in the main() thread, and still won't emit signals.</p> <p>I'm not really sure what to do here. I obviously cannot create a QCoreApplication in the application that will use my plugin, and I cannot emit signals without one.</p> <p>I have included a simple (and horribly written) test application which should illustrate my problem:</p> <p>Any help would be appreciated!</p> <p>main.cpp:</p> <pre><code>#include &lt;iostream&gt; #include "ThreadThing.h" using namespace std; int main(int argc, char *argv[]) { cout &lt;&lt; "Main: " &lt;&lt; 1 &lt;&lt; endl; ThreadThing thing1; cout &lt;&lt; "Main: " &lt;&lt; 2 &lt;&lt; endl; thing1.testStart(); cout &lt;&lt; "Main: " &lt;&lt; 3 &lt;&lt; endl; thing1.testEnd(); cout &lt;&lt; "Main: " &lt;&lt; 4 &lt;&lt; endl; thing1.wait(-1); cout &lt;&lt; "Main: " &lt;&lt; 5 &lt;&lt; endl; return 0; } </code></pre> <p>ThreadThing.h:</p> <pre><code>#ifndef THREADTHING_H #define THREADTHING_H #include &lt;QThread&gt; class ThreadThing : public QThread { Q_OBJECT public: ThreadThing(); virtual void run(); void testStart(); void testEnd(); public slots: void testSlot(); signals: void testSignal(); }; #endif//THREADTHING_H </code></pre> <p>ThreadThing.cpp:</p> <pre><code>#include "ThreadThing.h" #include &lt;iostream&gt; #include &lt;QCoreApplication&gt; using namespace std; ThreadThing::ThreadThing() { cout &lt;&lt; "Constructor: " &lt;&lt; 1 &lt;&lt; endl; this-&gt;start(); cout &lt;&lt; "Constructor: " &lt;&lt; 2 &lt;&lt; endl; } void ThreadThing::run() { cout &lt;&lt; "Run: " &lt;&lt; 1 &lt;&lt; endl; int i = 0; cout &lt;&lt; "Run: " &lt;&lt; 2 &lt;&lt; endl; QCoreApplication* t = new QCoreApplication(i, 0); cout &lt;&lt; "Run: " &lt;&lt; 3 &lt;&lt; endl; connect(this, SIGNAL(testSignal()), this, SLOT(testSlot()), Qt::QueuedConnection); cout &lt;&lt; "Run: " &lt;&lt; 4 &lt;&lt; endl; t-&gt;exec(); cout &lt;&lt; "Run: " &lt;&lt; 5 &lt;&lt; endl; } void ThreadThing::testStart() { cout &lt;&lt; "TestStart: " &lt;&lt; 1 &lt;&lt; endl; emit testSignal(); cout &lt;&lt; "TestStart: " &lt;&lt; 2 &lt;&lt; endl; } void ThreadThing::testEnd() { cout &lt;&lt; "TestEnd: " &lt;&lt; 1 &lt;&lt; endl; this-&gt;quit(); cout &lt;&lt; "TestEnd: " &lt;&lt; 1 &lt;&lt; endl; } void ThreadThing::testSlot() { cout &lt;&lt; "TEST WORKED" &lt;&lt; endl; } </code></pre> <p>Output:</p> <pre><code>Main: 1 Constructor: 1 Constructor: 2 Main: 2 TestStart: 1 TestStart: 2 Main: 3 TestEnd: 1 TestEnd: 1 Main: 4 Run: 1 Run: 2 WARNING: QApplication was not created in the main() thread. Run: 3 Run: 4 </code></pre> http://stackoverflow.com/questions/1665989/making-a-2d-engine-compiling-necessary-libraries-with-the-engine-instead-of-the 1 Making a 2D engine: compiling necessary libraries with the engine instead of the game knight666 2009-11-03T08:37:46Z 2009-11-23T17:45:40Z <p>I'm making a 2D engine in C++, and I want to be able to supply a .dll and a .lib so that games can just include those and everything is fine and dandy.</p> <p>I've looked at how Ogre does it, and it results in ugliness like this:</p> <pre><code>#ifdef __cplusplus extern "C" { #endif #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT ) #else int main(int argc, char *argv[]) #endif { // Create application object ShadowsApplication app; try { app.go(); } catch( Ogre::Exception&amp; e ) { #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 MessageBox( NULL, e.getFullDescription().c_str(), "An exception has occured!", MB_OK | MB_ICONERROR | MB_TASKMODAL); #else std::cerr &lt;&lt; "An exception has occured: " &lt;&lt; e.getFullDescription().c_str() &lt;&lt; std::endl; #endif } return 0; } #ifdef __cplusplus } #endif </code></pre> <p>While my engine currently does this:</p> <pre><code>MAIN { Game* game = Game::Create(); Engine::Init(); game-&gt;Init(); while (Engine::running) { if (Engine::PreRender()) { game-&gt;Update(); Engine::Render(); } Engine::ShutDown(); return 0; } } </code></pre> <p>Which means a clean game looks like this:</p> <pre><code>class BouncingBalls : public Game { public: BouncingBalls() { } void Init(); void Update(); }; Game* Game::Create() { return (new BouncingBalls()); } </code></pre> <p>Now, one major drawback: because I'm defining <code>main</code> in the engine instead of the game, I can't put all the necessary libraries in the engine. Every game has to load in a specific set of libraries, which is going to be hell when that list changes.</p> <p>Is there a way to keep the syntax like this while also loading in the .lib's in the engine instead of the game?</p> <p>Thanks in advance.</p> <p>EDIT: It seems things were not clear. My eventual goal is to have a single Visual Studio project that contains all of the engine functions, which compiles to a .lib or a .dll (not a .exe). If someone wants to make a game, he can simply include Engine.lib in his project and Engine.dll in his project folder and get going.</p> <p>It should be as easy as possible to start up a new project, without having to worry about low-level C++.</p> http://stackoverflow.com/questions/1115755/inject-to-npswf32-dll-flash10a-ocx-flashplayer-xpt-to-create-a-global-actions 0 Inject to NPSWF32.dll & Flash10a.ocx & flashplayer.xpt to create a global ActionScript VM console and debugger? est 2009-07-12T10:33:27Z 2009-11-23T14:13:51Z <p>Hi all,</p> <p>since all browser's Flash plugin is based on: NPSWF32.dll Flash10a.ocx flashplayer.xpt</p> <p>Is there a way to inject these dll's, use some voodoo to create a global ActionScript VM console and debugger?</p> <p>Perhaps then I can submit arbitary score to any online Flash games?</p> http://stackoverflow.com/questions/1778111/whats-the-differences-between-dll-lib-h-files 2 what's the differences between .dll , .lib, .h files ? MemoryLeak 2009-11-22T07:34:45Z 2009-11-22T10:24:36Z <p>why in a project should include some *.lib, .h or some other files ? and what are these things used for ?</p> http://stackoverflow.com/questions/1777526/c-dll-injection 0 C++ Dll Injection unknown (google) 2009-11-22T01:56:04Z 2009-11-22T02:03:28Z <p>Hello everyone, I would really appreciate your help in this.</p> <p>I have been trying to get a Dll injected into a remote process and do a few changes inside it, the problem I'm encountering right now is i don't know how to get this going.</p> <p>So first, here is my piece of code that I have developed so far: <br>dllmain.cpp</p> <pre><code>#include &lt;windows.h&gt; #include &lt;stdio.h&gt; BOOL APIENTRY DllMain (HINSTANCE hInst /* Library instance handle. */ , DWORD reason /* Reason this function is being called. */ , LPVOID reserved /* Not used. */ ) { switch (reason) { case DLL_PROCESS_ATTACH: MessageBox (0, "From DLL\n", "Process Attach", MB_ICONINFORMATION); break; case DLL_PROCESS_DETACH: MessageBox (0, "From DLL\n", "Process Detach", MB_ICONINFORMATION); break; case DLL_THREAD_ATTACH: MessageBox (0, "From DLL\n", "Thread Attach", MB_ICONINFORMATION); break; case DLL_THREAD_DETACH: MessageBox (0, "From DLL\n", "Thread Detach", MB_ICONINFORMATION); break; } return TRUE; } </code></pre> <p>It simply displays a message box depending on the conditions it meets. Now what I would like my Dll to do is, after being injected into the remote process, I would like it to write a memory location and change it's value.</p> <p>Data type: Unsigned Short Int<br> Memory location: 0041D090</p> <p>I hope everything is clear, Thank you for your patience, help is appreciated.</p> http://stackoverflow.com/questions/767579/exporting-classes-containing-std-objects-vector-map-etc-from-a-dll 5 Exporting classes containing std:: objects (vector, map, etc) from a dll RnR 2009-04-20T09:38:26Z 2009-11-21T20:16:45Z <p>I'm trying to export classes from a DLL that contain objects such as std::vectors and std::stings - the whole class is declared as dll export through:</p> <pre><code> class DLL_EXPORT FontManager { </code></pre> <p>The problem is that for members of the complex types I get this warning:</p> <blockquote> <p>warning C4251: 'FontManager::m__fonts' : class 'std::map&lt;_Kty,_Ty>' needs to have dll-interface to be used by clients of class 'FontManager' with [ _Kty=std::string, _Ty=tFontInfoRef ]</p> </blockquote> <p>I'm able to remove some of the warnings by putting the following forward class declaration before them even though I'm not changing the type of the member variables themselves:</p> <pre><code>template class DLL_EXPORT std::allocator&lt;tCharGlyphProviderRef&gt;; template class DLL_EXPORT std::vector&lt;tCharGlyphProviderRef,std::allocator&lt;tCharGlyphProviderRef&gt; &gt;; std::vector&lt;tCharGlyphProviderRef&gt; m_glyphProviders; </code></pre> <p>Looks like the forward declaration "injects" the DLL_EXPORT for when the member is compiled but is it safe? Does it realy change anything when the client compiles this header and uses the std container on his side? Will it make all future uses of such a container DLL_EXPORT (and possibly not inline?)? And does it really solve the problem that the warning tries to warn about?</p> <p>Is this warning anything I should be worried about or would it be best to disable it in the scope of these constructs? The clients and the dll will always be built using the same set of libraries and compilers and those are header only classes...</p> <p>I'm using Visual Studio 2003 with the standard STD library.</p> <p>---- Update ----</p> <p>I'd like to target you more though as I see the answers are general and here we're talking about std containers and types (such as std::string) - maybe the question really is:</p> <p>Can we disable the warning for standard containers and types available to both the client and the dll through the same library headers and treat them just as we'd treat an int or any other built-in type? (It does seem to work correctly on my side.) If so would should be the conditions under which we can do this?</p> <p>Or should maybe using such containers be prohibited or at least ultra care taken to make sure no assignment operators, copy constructors etc will get inlined into the dll client?</p> <p>In general I'd like to know if you feel designing a dll interface having such objects (and for example using them to return stuff to the client as return value types) is a good idea or not and why - I'd like to have a "high level" interface to this functionality... maybe the best solution is what Neil Butterworth suggested - creating a static library?</p> http://stackoverflow.com/questions/1776060/how-to-make-visual-studio-copy-dll-to-output-directory 0 how to make visual studio copy dll to output directory? Mat 2009-11-21T17:09:26Z 2009-11-21T17:24:14Z <p>Hi!</p> <p>I have a Visual Studio C++ project that relies on an external dll file. How can I make Visual Studio copy this dll automatically into the output directory (debug/release) when i build the project?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1772417/how-to-link-a-dll-to-simulink 1 How to link a dll to Simulink?? Superhero 2009-11-20T18:32:45Z 2009-11-21T04:06:45Z <p>I need to use a dll file in my Simulink model. Does anyone have any suggestions?</p>