3
votes
3answers
497 views
Windows API spying/hijacking techniques
I'm interested in using API spying/hijacking to implement some core features of a project I'm working on. It's been mentioned …
1
vote
3answers
221 views
Checking if a registry key exists
I am looking for a clean way to check if a registry key exists. I had assumed that RegOpenKey would fail if I tried to open a key that didn't exist, but it doesn't.
I could use string proce …
1
vote
Using GCC from within VS 2005(8) IDE
There are certainly ways to do this -- this is how we develop for the PS3 with sony's toolchain (which is based on gcc). I don't know exactly how that works, but it integrates pretty seamlessly int …
0
votes
char[] to hex string exercise
I'm not sure doing it more bytes at a time will be better... you'll probably just get tons of cache misses and slow it down significantly.
What you might try is to unroll the loop though, t …
0
votes
c++ overload resolution
The function is hidden by the function with the same name in the subclass (but with a different signature). You can unhide it by using the using statement, as in using A::DoSomething();
…
1
vote
Fastest way to find if a 3D coordinate is already used
Well, it depends on what's most important... if a tripple map is too tedious to use, then is implementing other data structures not worth the effort?
If you want to get around the uglyness …
5
votes
Will this C++ code cause a memory leak (casting array new)
The behaviour of the code is undefined. You may be lucky (or not) and it may work with your compiler, but really that's not correct code. There's two problems with it:
The delete shou …
2
votes
How to find header dependencies for large scale projects on linux
Tools like doxygen (used with the graphviz options) can generate dependency graphs for include files... I don't know if they'd provide enough ove …
-1
votes
Delete a registry key recursively
You're looking for the RegDeleteTree() function. Just replace RegDeleteKey with it.
Apparently, …
