Tagged Questions

7
votes
3answers
243 views

Handles Comparison: empty classes vs. undefined classes vs. void*

Microsoft's GDI+ defines many empty classes to be treated as handles internally. For example, (source GdiPlusGpStubs.h) //Approach 1 class GpGraphics {}; class GpBrush {}; class GpTexture : public ...
3
votes
3answers
266 views

Anonymous Pipes

I've written a two short programs that use anonymous pipes to communicate. The parent process shares the pipe handles by setting the standard IO handles for the child: // -- Set STARTUPINFO for the ...
2
votes
2answers
174 views

Using Event Handles Across Threads - C++

I have an application wherein I am sharing event handles across threads. These event handles are used to signal transmit complete and received data notifications of serial I/O to the application. ...
2
votes
3answers
268 views

Testing for an invalid windows handle: should I compare with 'NULL', '0' or even 'nullptr'?

I'm coming from a background whereby pointers should generally be compared with 'NULL' and integers with '0'. Since I didn't perceive Windows handles to be 'pointers' in the pure sense (being ...
1
vote
1answer
85 views

Get name of all handles in current process

I need to list all open handles in current process. Since i could not find any function like "EnumHandles", I was thinking of making a loop from 0 to 1000. The question is how i can retrieve the name ...
0
votes
1answer
70 views

Detect Refresh action under windows xp

My question is simple. How I can detect if user refreshed explorer under windows xp? Or if it would be easier how to detect if user refreshed desktop? I heard that I can listen desktop handle. If ...
0
votes
1answer
62 views

Handles and pointer to object

I have a python Interpreter written in C++, the PyRun_String function from the Python API is said to return a handle, however in my code I have it assigned to pointer to a PyObject? PyObject* presult ...
0
votes
3answers
174 views

How can you break on handle creation?

I have an application that spawns multiple child processes. Before launching a child, I create stdOut and stdErr handles to a log file (for example, if I am about to launch procA, i create handles to ...