Tagged Questions
The getprocaddress tag has no wiki summary.
3
votes
4answers
764 views
C# GetProcAddress Returns Zero
For some reason, whenever my C# .NET 2.0 application makes a call to GetProcAddress it always returns zero.
public class MyClass
{
internal static class UnsafeNativeMethods
{
...
2
votes
2answers
83 views
C++ how to dynamically load a 3rd party DLL file
I need to integrate a 3rd party DLL file with my application, I have only the .DLL and the .pdf documentation of the DLL.
This is the pdf of the dll: ...
2
votes
2answers
628 views
GetProcAddress function in C++
Hello guys: I've loaded my DLL in my project but whenever I use the GetProcAddress fucntion. it returns NULL! what should I do?
I use this function ( double GetNumber(double x) ) in "MYDLL.dll"
here ...
2
votes
1answer
214 views
Addresses of Delphi and C++ WinAPI functions differ when they shouldn't
In C++, if you try to get a function pointer of a Windows API function, that pointer points to the same address you would get if you used GetProcAddress on the name of that function and it's ...
2
votes
2answers
920 views
Difference between dllimport and getProcAddress
First, I know that it doesn't make sense to compare the dllimport attribute and the getProcAddress function directly. Rather, I am interested in comparing two pieces of code, that achieve basically ...
2
votes
2answers
4k views
Load 32bit DLL library in 64bit application
Is there a way to load a 32bit DLL library (something with the same usage as LoadLibrary) I would like to use that function along with GetProcAddress.
I looked at WOW, but it does not seem to offer ...
1
vote
1answer
260 views
GetProcAddress returns NULL
I have to use a simple function from a DLL; I am able to load the library but GetProcAddress returns NULL. I think I understood name mangling but maybe I'm doing something wrong. Thanks (Code follows, ...
1
vote
0answers
149 views
calling a function from a DLL protected by Armadillo
I am trying to call functions located in an external DLL from a C++ 6.0 MFC application. I do not have the def or the lib file for this DLL, so I am using LoadLibraryEx/GetProcAddress methodology to ...
1
vote
3answers
2k views
Calling WinSock functions using LoadLibrary and GetProcAddress
Basically I have a header file like this:
#if WIN32
typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData);
typedef SOCKET (WINAPI *MakeSocket)(IN int af, IN int type, ...
0
votes
4answers
51 views
Regarding GetProcAddress
I have got MyDll.dll and its function defined as below
void pascal Myfunction(BOOL);
when I'm trying to use the function in another project i am unable get the address of the function with ...
0
votes
0answers
27 views
Is it safe to implement a custom LdrGetProcedureAddressEx?
In Windows NT's native API, one ultimately uses LdrGetProcedureAddressEx to resolve the address of a function or variable symbol as exported by a dynamically linked library. A little higher up in the ...
0
votes
1answer
281 views
ASM: LoadLibrary & GetProcAddress
I am using ASM first time ever and before i continue i need to know if i understood everything right when i wrote this. The current code looks like this:
push 0xDEADBEEF ; address of library ...
0
votes
1answer
240 views
GetProcAddress doesn't work for functions other than void
I have a problem with GetProcAddress:
I wrote a simple DLL with just one function in it:
extern "C" LRESULT WINAPI Function(HWND Hwnd, UINT Message,
WPARAM wParam, ...
0
votes
1answer
203 views
about exporting function methods from .net dll (C#)
math.dll
namespace math
{
public class MyClass {
public static int Add(int x, int y)
{
return x+y;
}
}
And in my exe project I want to use Add() function ...
0
votes
3answers
305 views
GetProcAddress an Class object without header file
It should be possible to get an class object from an dll without the corresponding dll header file!? But how can I make the typedef of the class for GetProcAddress without known type from header file?
...
0
votes
1answer
138 views
Persistent access error calling a function returned by GetProcAddress
Here is my code. It seems straighforward to do, but somehow it just isn't working.
The final call to the function always fails with an access error.
extern "C"
{
typedef const char* ...
0
votes
3answers
383 views
Getting a DLL class procedure address in Delphi
I have a DLL file from which I need the memory address of a class procedure. I am getting the handle to the DLL file, but when I use GetProcAddress, I can't get the address of the procedure. I have ...
0
votes
2answers
352 views
STATUS_STACK_BUFFER_OVERRUN with LoadLibrary
When I load iphlpapi.dll with LoadLibrary my stack buffer overrun! How can I solve
this problem?!
typedef DWORD (*GetExtendedTcpTable)(PVOID, PDWORD, BOOL, ULONG, TCP_TABLE_CLASS, ULONG);
...
0
votes
1answer
253 views
How to find a user32.dll function address from an x64 process within an x86 process?
How to find a user32.dll function address from an x64 process within an x86 process?
Edit: i mean my program runs x64, and i searching an x86 address.
0
votes
1answer
504 views
GetProcAddress cannot find my functions
I made a DLL with a function named "render()" and I want to load it dynamically to my application, but GetProcAddress cannot find it. Here's the DLL .h:
#ifdef D3D_API_EXPORTS
#define D3D_API_API ...
0
votes
2answers
386 views
How does GetProcAddress work
I've done some googling but haven't really found much. How does GetProcAddress work? What goes on behind the scenes? Do the method names and their corresponding address get stored in meta data ...
0
votes
1answer
192 views
Calling any dll function based on variable arguments
I have the following items in a structure
- Dll name (absolute/relative path)
- Function name in the dll
- number of parameters
- Array of parameter types and values
With these information, I need ...
0
votes
1answer
124 views
Checking, at runtime, for existence of a function in a program
I am writing a program that is meant to be extended by some function definitions. One of the way of compiling the program is to create a single executable linking your code to the main code. The ...