Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
78 views

I was experimenting with writing a forward only wrapper that expose the function of the original dll, I decided to play with chromium "chrome.dll", my code seem to work, chromes open but ...
xion's user avatar
  • 61
0 votes
1 answer
100 views

I'm having trouble with calling libc routines from a self compiled dll loaded with ctypes.CDLL. Here is a minimal example: DLL is generated in Visual Studio 2022 (OS: Windows 11, everything in 64 bit) ...
broesel09-90's user avatar
0 votes
0 answers
116 views

Below code is used for SQL Connection in C++: SQLDriverConnect(hdbc, /* Connection handle */ 0, /* Window handle */ connectString, /* Connection string */ ...
SoftWar's user avatar
  • 180
1 vote
2 answers
485 views

I am trying to call an unmanaged dll. While looking for information about this and trying it, I thought I could use params object[] instead of __arglist , so I changed it like the following code, but ...
Sia Luna's user avatar
0 votes
0 answers
22 views

I am trying to catch the return value of the function which written in .c file from .py file Here is my C code snippet and it runs perfectly with main function for itself, float checkRet(){ ...
Desarrollador Rucha's user avatar
0 votes
0 answers
48 views

I'm trying to convert the functionality of our old code to a DLL. One of the function wants to export from our old code use a dynamically linked DLL (that I'm gonna call other) std::wstring ...
ChristineA's user avatar
1 vote
1 answer
111 views

I made a CPP DLL and I'm trying to call function inside it from python. I've achieved this multiple times for other functions, but this one, I just can't find my mistake. dll_name = "..\\src\\x64\\...
BeGreen's user avatar
  • 1,033
3 votes
2 answers
12k views

In C#, while loading DLL from folder using the below code getting these below stack trace, when tried to get the types. var assembly = Assembly.LoadFile(assemblyInfo.FullName); // assembly loads ...
Md. Alim Ul Karim's user avatar