Tagged Questions
-5
votes
1answer
84 views
Exporting same DLL function under multiple names [closed]
I have made some functions in my DLL, like this:
procedure DoThis(A: PChar): Boolean; stdcall;
begin
f := TFileStreamCreate(A, fmCreate);
f.read()
f.free;
end;
then I exported it under 2 names:
...
-3
votes
1answer
96 views
Using the Win32 API without WinMain? [closed]
I'm trying to use the Win32 API from a DLL to handle it due to it's quite messy but I only know how to call it using WinMain. Is there I way I can call a method to invoke the window?
0
votes
0answers
47 views
ActiveX in python (3.3) without win32com
I used win32com for controlling an other application with the ActiveX-Interface. But I run in the msvcr90/100.dll hell.
On my system (Win7 + normal python install) all works fine, but not on ...
0
votes
0answers
23 views
Create minidump from Excel XLL
I have an Excel XLL addin that crashes Excel on some computers.
In order to troubleshoot I added this call in DllMain:
SetUnhandledExceptionFilter(MyExceptionFilter);
and a filter itself:
LONG ...
0
votes
1answer
35 views
Imported global variable from dll not updated
I am exporting a global variable from a dll using __declspec(dllexport) and importing the same in the client exe using __declspec(dllimport).
The global variable in the dll is being updated with time ...
0
votes
0answers
46 views
Tracing LoadLibrary or LdrLoadDll
I need to get the directory search path followed while loading a DLL. So I need to trace either the LoadLibrary or LdrLoadDll function call to get the path followed from its arguments. Is there any ...
0
votes
1answer
46 views
Use MATLAB Engine application without adding MATLAB to the PATH
I am working on a MATLAB Engine application. In order for it to work, MATLAB needs to be added to the PATH environment variable so that the Engine application can find certain DLLs (libeng and ...
3
votes
1answer
50 views
Is a long list of dependencies because of a call to RegOpenKeyEx normal?
I have written a little driver DLL which I hope to deploy on a lot of XP machines some of which are bound to have missing dlls and such. Until today my Dll depended only on KERNAL32.DLL and I was ...
0
votes
0answers
61 views
How to dynamically linking sapi.dll and making it work?
I would like to dynamically bind into windows sapi.dll
and then call some code needed to 'speak' some text
on windows - some code like this below
(this snippet is copied from gamedev.net article by ...
1
vote
1answer
64 views
What's the purpose of the Direct3D import libraries? [closed]
From my understand those libraries are typically linked with explicit run-time linking (LoadLibrary), yet there are still those import libraries which contains descriptors to a small subset of the ...
0
votes
0answers
52 views
LoadLibrary doesn't load the module globally
I have the scenario that I would like to create a new process with CreateProcessW and the CREATE_SUSPENDED flag. After that I inject an DLL with CreateRemoteThread that calls LoadLibraryA. The DLL ...
0
votes
1answer
60 views
What DLLMain lpReserved parameter really mean?
One of well-known DLLMain function parameters is LPVOID lpvReserved.
From MSDN documentation:
If fdwReason is DLL_PROCESS_ATTACH, lpvReserved is NULL for dynamic
loads and non-NULL for static ...
0
votes
1answer
77 views
I injected a dll into a process, so how to call the functions of target process?
I am wondering is that possible to call target process's functions from a injected dll. If yes, how to do that?
I am newbie so any advices/clues/references are welcome. Thank you~
0
votes
2answers
212 views
Let a dll call a .exe function by sending a pointer [duplicate]
This question looks like one I asked before, except that I now know that you can't call the main function from a global object. So this code doesn't work with main. But why does it fail with other ...
1
vote
2answers
228 views
Creating C++ .dll for use by Excel & C# (32/64bit Window)
Recently I would like to start building a .dll maths library with Visual C++ Express 2010.
I would like to use the .dll as library reference for BOTH Excel VBA & C# applications. I expect it ...
3
votes
2answers
159 views
Why does memory allocated from inside a DLL become invalid after FreeLibrary()?
I had this bug today which turned out to be because I use a string allocated from inside my DLL after calling FreeLibrary().
This is a simple example reproducing the crash. This goes in DLL:
void ...
-1
votes
2answers
169 views
LoadLibrary() relative address to dll
I am trying to load a dll in my code in windows, I load my dll successfully with LoadLibrary() function but I have a question, I give the path to my dll like:
LoadLibrary(C:\\path\\to\\my\\dll);
I ...
0
votes
1answer
163 views
dll injection - simple main
I'm tring to inject a dll to an .exe, i code this simple main but my file isn't created.
I inject it with a cpp code, but i don't think the injector is the problem.
DWORD WINAPI Main_thread( LPVOID ...
2
votes
1answer
257 views
Export Interface from Dll. C# Delphi VB C++ etc
I've created an application in Delphi that is capable of loading plugins from a dll. The dll exports one function which looks like this
function GetPlugin: IPluginInterface;
IPluginInterface is a ...
0
votes
1answer
56 views
Handling the hook function
I'm trying to use EasyHook in C# to properly hook into a method from a COM object (unmanaged).
I was able to determine the address of the method of the COM object and I can properly trigger my hook ...
0
votes
2answers
106 views
Creating and Loading DialogBox from DLL
I've created a dialog box inside a Win32 DLL (using resource editor) and now want to show it as application program (using this DLL) calls DisplayDialog, but it is not working.
// AppProgram.cpp
...
...
0
votes
0answers
53 views
List of functions exported by a DLL in WinAPI [duplicate]
Possible Duplicate:
Win32 API to enumerate dll export functions?
I am writing a plugins subsystem and one of the ideas is to iterate through a DLL exported functions. I know there are other ...
1
vote
1answer
136 views
Is it possible to draw in another window (Using Opencv/ffmpeg
I realize this question might be closed with the "not enough research". However I did spent like 2 days googling for it and didn't find a conclusive answer.
Well I have an application that spawns a ...
0
votes
2answers
121 views
Using GUIDFromString requries including Shell32.dll: How do I do that
I am attempting to use the WinAPI function GUIDFromString() but it requires some finagling to include it in my project.
According to the msdn documentation:
This function is not declared in a ...
2
votes
1answer
45 views
Is there a way to obtain, by name, a function at current process in Windows?
Is there an equivalent of the following on Windows?
#include <dlfcn.h>
#include <stdio.h>
void main_greeting(void)
{
printf("%s\n", "hello world");
}
void lib_func(void)
{
void ...
0
votes
1answer
101 views
Is it ok to wait in DllMain (PROCESS_DETATCH) as long as its not forever?
I am writing an interface Dll which communicates with hardware via USB. In order to full fill timing requirement for the hardware (keeping it from timing out with no operation messages etc.) I create ...
1
vote
2answers
122 views
Creating a simple c# dll and access it from ruby
I'm trying to make my first c# dll.
I want to be able to call it's methods/functions from ruby with win32API.
I have made this dll:
using System;
using System.Collections.Generic;
using System.Linq;
...
0
votes
0answers
102 views
Create MDI Child form dialog resource ID
Can some one help me to solve next problem.
I have target MDI application.
I inject dll to this app to create attached dialog. This dialog is resource-based.
Then I inject dll I create thread, in ...
1
vote
1answer
87 views
Error with compiling DLL with intel compiler
I'm trying to compile DLL from console, without using any IDE and faced with next error.
I wrote this code:
test_dll.cpp
#include <windows.h>
#define DLL_EI __declspec(dllexport)
BOOL WINAPI ...
0
votes
3answers
230 views
Excel 2007 VBA win32 dll fuction wierd behavior?
Just for the fun of it I wanted to call a GDI (win32) drawing function from excel-vba. Following are my dll function declarations. All these are imported from win32.
Public Declare Function GetDC _
...
0
votes
1answer
206 views
Win32 Form for dll injection
I created a dll with form in it, and when we inject the dll the form open.
But the problem it when I do it, the process that I injected to, stuck and I can't with him noting.
here what I did.
DWORD ...
0
votes
1answer
121 views
Using VirtualQueryEx to enumerate modules at remote process doesn't return all modules
I am trying to get a list of DLLs that a given process is using, I am trying to achieve that through VirtualQueryEx. My problem is that it return to me just a partial list of DLLs and not all of them ...
-2
votes
1answer
121 views
Unable to call a function in DLL
Unable to call a DLL "sdm00.dll" which is in SCALE folder.I m trying to invoke "SpC" function which takes parameter as a "number" converted into asci code+"SpApp|".But m nt able to load DLL & ...
-2
votes
1answer
701 views
how to use the GetFileVersionInfo function?
I have this code - that is returning the file version (into a struct)
I'm using as example the shell32.dll
but there are some values that I don't understand their meanings , and would love to get an ...
0
votes
0answers
61 views
DLL cannot use address in executable
I'm writing a console application in 64bit NASM, and everything was fine until I moved part of my executable into a DLL I created.
This is my first experiment with DLL's at an assembly level.
I cannot ...
2
votes
2answers
109 views
how to get the Version of a DLL?
I'm opening a DLL from system32 (shell32.dll )
and I want to receive it's version.
How Can I do it? I started writing it , but just don't know how to continue :
I also saw that there are functions ...
1
vote
1answer
207 views
Win32 api for opening and getting data from resource files
I have a project that is compiling into a DLL , and a resource file that I added manually.
I'm looking for Win32 API that can help me find resource files and get information and data from them (using ...
0
votes
1answer
125 views
Displaying a dialog resource from a different DLL in MFC application
I have a Win32 resource DLL (No MFC), which has a dialog in it.
I can load the Win32 dll using LoadLibrary from the MFC application.
After loading the DLL, how do I bring up the dialog to show it to ...
1
vote
1answer
139 views
Add char array to LoadLibrary
I need to load a dll using a static library i know how to load the dll but I can't workout how to add my character array to load library. I have tried using a for loop but it wouldn't run inside the ...
0
votes
1answer
118 views
Memory corruption (?) in debug mode
I need to use GetVolumeInformationW. For reasons uknown, I decided to load Kernel32.dll dynamically, resolve function address at runtime… Result is memory corruption problem and some strange ...
2
votes
1answer
101 views
DLL crashes app after reuse
I use an application that uses mdi and a script can be attached to, and detached from, a mdi window to be run/stopped on demand; this script loads my dll that does some work; it does fine so; however, ...
0
votes
0answers
90 views
Is netapi32.dll exclusively for Windows platforms?
When I tried NetServerEnum function for finding out available servers on the network, to my surprise it only listed servers running on windows platform family. Specifically it listed servers having ...
0
votes
0answers
46 views
Work Station Lock Notification
I am trying to write a dll which has a feature of calculating time the workstation was locked (Workstation lock as in pressing windows key + L). Now, I tried search a way for implementing this, the ...
1
vote
2answers
452 views
LoadLibrary with Absolute Path returns Incorrect HMODULE with No Error
I have some code which is trying to load a Dll.
I have encountered an odd 'error' with this. When trying to load the dll from an absolute path, I get a Non-Null HMODULE that gives no windows error ...
2
votes
1answer
123 views
GetProcAddress() returning null for my Hello World function
Alright, so my simple DLL Hellow World function
#include "stdafx.h"
extern "C" void HelloWorld()
{
MessageBox( NULL, TEXT("Hello World"),
TEXT("In a DLL"), MB_OK);
}
isn't getting ...
0
votes
2answers
116 views
C++ API DLL Project
I have a C++ project which uses an API that comes with DLL and LIB files, as well as a header file.
I want to create a win32 forms project.
My question is how do I link the project with the dll and ...
0
votes
1answer
55 views
Dynamic DLL and ESP corruption
I'm learning to use dynamic DLL. I have created 2 functions i DLL library:
DWORD fn1(VOID);
DWORD fn2(WCHAR*);
and exported it using def file
EXPORTS
fn1
fn2
When I load&use fn1, everything ...
1
vote
3answers
254 views
Using C++ DLL in Delphi 6
I have to use an encoding function from an external C++ DLL in Delphi 6.
Following is the declaration provided :
long <Function Name> (char *Data, long &Apply, char *ReturnVal, long ...
1
vote
1answer
83 views
Merge DLL to PE (Patching)
I have an executable that needs a dll file for dependencies. I wonder if it's possible to actually patch a PE file that needs the dll that would read the entry point from a pointer which is located ...
3
votes
2answers
405 views
Are resource files compiled as UNICODE or ANSI code-page?
First - my apologies if this has been answered a hundred times over! D'oh!
But my search-fu apparently sucks, as I'm having no luck answering this basic question:
How are resources stored in the ...

