Questions tagged as 'dll'

1
answer

DLL library access made in Delphi from Java

I am developing a tool for biometric recognition using the SDK provided in DLL format, developed in Delphi. For DLL access from Java, I'm using JNA. The digital template (the most important part) is an object that refers to this section (in D...
asked by 06.03.2015 / 17:09
2
answers

Using methods from a DLL

I'm having to use methods from a DLL that was developed by third parties. I have only the ".DLL" file. The DLL documentation is scarce ... there is an example of executing the method I need in VB Private Const TamMsgErro As Long = 1000 Dim...
asked by 20.02.2014 / 19:49
2
answers

Consuming C # Functions (dll) in a C / C ++ project

I need to call / reuse some functions I have in a DLL, developed in C #, within a project made in C. I've already looked for some things and what I managed to make legal work was this project: link This step-by-step article describes how...
asked by 30.04.2014 / 13:24
2
answers

What are the advantages of creating dll's in the project and not putting the classes directly in it?

In the company where I use many DLL's and I have a lot of trouble debugging and understanding this ... In my projects (personal) I always put the classes straight in the same and I do not like them, I find it much easier so, which the advantage...
asked by 17.04.2018 / 15:46
1
answer

What is the difference between a DLL produced with C ++ and a C #

After some time searching, I did not find any results for this issue, the existing MSDN topics also did not return anything regarding the support of the 2 in Windows. In short, the question is, what's the difference after compiling a DLL prod...
asked by 17.11.2015 / 12:20
1
answer

Authorization in class libraries

Doubt I have a project where the entire business rule is encapsulated in a set of DLLs with 3-tier architecture. I wonder, what is the best approach for authorization control in these dll's. Is it possible to use Identity? Is there a des...
asked by 06.01.2015 / 17:15
2
answers

Dll C # in Delphi 7

I need to generate a "ini" file in the "C: \ Windows \ Temp \ USB.ini" folder containing printer information installed for another pre- historic consume. I created the following (gambiarra) dll in C #: [ClassInterface(ClassInterfaceType...
asked by 05.03.2014 / 15:17
1
answer

ERROR: This is application failed to start because it could not find or load the Qt platform plugin "windows"

I'm having an error while running a program that was created with Qt, it generates the error of the photo! This error is generated when I run the exe, all the dlls indicated in dependency walker are in the exe folder. Would anyone help me?...
asked by 04.03.2015 / 19:05
3
answers

Create and read DLL in php?

Would it be possible to create and open windows DLL libraries in php? I want to organize my php classes in dll so that they can be used in both php and C #, if there is an alternative, it also works.     
asked by 29.04.2014 / 21:56
1
answer

Java using .DLL library

I'm having trouble creating the interface in java, because I can not figure out the header of the function in C. Example Header C function: CMOEP_API char * CALLCONV CMP_GetLastError( ); Now in java I have this but I do not know how to i...
asked by 22.09.2014 / 17:07