0
votes
1answer
15 views
Howto Track down variable Corruption
I have a MFC class derived from CStdioFile declared as follows
// Datafile.h
class CDataFile : public CStdioFile
{
public:
CDataFile(void);
~CDataFile(void);
int OpenFile(L …
1
vote
3answers
98 views
How to use a dll?
I have a .dll file and the .lib file for it.
The DLL talks to an electronic key reader, and allows you to read/write the key ID.
This is the only documentation that comes with:
…
-1
votes
1answer
40 views
Getting AVI file duration
I am using VFW unit from JEDI wrapper on WinAPI.
The code I am writing is intended to search user drives and detect warez (note: deciding if some file is legal or not is beyond sc …
0
votes
2answers
81 views
Error on getting AVI file duration
I am using VFW unit from JEDI wrapper on WinAPI.
The code I am writing is intended to search user drives and detect warez. We do MP3, WMA and some graphic file search. Now we want …
0
votes
2answers
76 views
‘Safe’ DLL Injection
Not a terribly good question, sorry.
I have a program that needs to be alerted when a file is opened from explorer (i.e. ShellExecute(A/W) is called).
Unfortunately, Microsoft re …
1
vote
1answer
19 views
GetExitCodeProcess process termination status codes?
Hello,
Does anybody know where can I find a list of GetExitCodeProcess' process termination status codes? I've done some search in the internet and haven't been able to find one.
…
1
vote
2answers
17 views
How to obtain the PIDL of an IShellFolder
If I have an IShellFolder interface pointer, how might I obtain its PIDL? I can see how to enumerate its children, and I can see how to use it to compare any two children... but h …
0
votes
5answers
49 views
How to prevent starting TaskManager in my Desktop?
Hi,
I am creating a new Desktop in Windows XP/Vista and 7 using win32 API.
This is more like having a secure Desktop and I don't want let any other application to be executed in t …
0
votes
3answers
27 views
Prevent windows from queuing shellexecute requests
Win.ShellExecute 0, "open", "C:\dir\program.exe", "arguments", vbNullString, SW_SHOWNORMAL
Win.ShellExecute 0, "open", "http://www.google.com", vbNullString, vbNullString, SW_SHOWN …
2
votes
5answers
75 views
Track handle creation / deletion
I have a large old program which has some rather complex graphical displays (all via standard API calls). The program appears to be working fine, but I recently looked at the "hand …
1
vote
6answers
73 views
DeleteFile fails on recently closed file
I have a single threaded program (C++, Win32, NTFS) which first creates a quite long temporary file, closes it, opens for read, reads, closes again and tries to delete using Delete …
2
votes
2answers
54 views
Windows API: What is the first message a window is guaranteed to receive?
I've been used to thinking that WM_CREATE is the first message a window receives. However, when testing this assumption on a top-level window, it turns out to be false. In my test, …
0
votes
1answer
12 views
CreateDC fails with error code 0
I'm printing using CreateDC, passing in a valid DEVMODE structure and getting NULL returned which indicates an error but GetLastError returns 0.
m_hDC = ::CreateDC(L"WINSPOOL", P …
0
votes
1answer
51 views
+150
Detect drag and drop operations in an external application using .Net
I need to detect drag and drop operations in an external application, is it possible? I thought of writing a hook to detect these operations. Can anybody point me in the right dir …
0
votes
1answer
35 views
Registry key for Install update and hotfix information on windows 7
Hi All,
I am working on windows 7 support. In my application I want to gather installed updates and patches. Currently I am gathering it from WIn32_QuickFixEngineering. But it is …
