11
votes
13answers
392 views
Win32.: How to scrape HTML without regular expressions?
A recent blog entry by a Jeff Atwood says that you should never parse HTML using regular expressions - yet doesn't give an alternative.
i want to scrape search search results, extracting values:
…
11
votes
5answers
300 views
Differences between struct in C and C++
I am trying to convert a C++ struct to C but keep getting "undeclared identifier"? Does C++ have a different syntax for referring to structs?
struct KEY_STATE
{
bool kSHIFT; //if the shift key …
11
votes
3answers
543 views
Win32 API function to programatically enable/disable device
I am writing a small C# app to disable a device (my laptop touchpad) whenever another mouse device is detected, and enable the touchpad again if a mouse is not detected. I am not even able to disable …
9
votes
2answers
165 views
alignment requirements for atomic x86 instructions
Microsoft offers the InterlockedCompareExchange function for performing atomic compare-and-swap operations. There is also an _InterlockedCompareExchange intrinsic.
On x86 these are implemented using …
7
votes
2answers
216 views
Raw PDO to send IOCTL to upper filter driver (kbfiltr/moufiltr) to enable/disable device
I am quite new to driver development and trying to write a simple filter driver that will enable or disable a keyboard or mouse device. If I can make it work, I want to use it to disable the touchpad …
7
votes
4answers
374 views
Windows API for VISTA, 7 & Beyond
Is there any fundamental differences in the WinAPI/Win32? Is there any additional knowledge required to take advantage of new OS features?
Are there any pitfalls which someone who's coded Win32 apps …
6
votes
6answers
290 views
Can I capture stdout/stderr separately and maintain original order?
I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red.
In order to accomplish this I create a …
6
votes
5answers
656 views
How to get the cpu usage per thread on windows (win32)
Looking for Win32 API functions, C++ or Delphi sample code that tells me the CPU usage (percent and/or total CPU time) of a thread (not the total for a process). I have the thread ID.
I know that …
6
votes
2answers
386 views
How do I color output text from Perl script on Windows?
I would like to color format the text printed to the console using the Perl print command.
In my case the script will only be run under WinXP-DOS Command Line but it would be great if it was OS …
5
votes
7answers
262 views
How does a program look in memory?
How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the entire structure.
Since the …
5
votes
1answer
217 views
SwitchToThread vs Sleep(1)
I'm wondering what's the actual difference between calling Thread.Sleep(1) and calling SwitchToThread (if we ignore that it's currently not exposed by the BCL).
Joe Duffy mentions in his post that:
…
5
votes
16answers
647 views
What does .NET give me, that Win32 does NOT?
What would the usage of .NET give me, that i don't have using Win32 - and sometimes maybe googling for some 50-100 Lines of code i can reuse?
I am developing Win32 since it exists (> 15 years). Its …
4
votes
3answers
148 views
Is “const LPVOID” equivalent to “void * const”?
And if so, why some Win32 headers use it?
For instance:
BOOL APIENTRY VerQueryValueA( const LPVOID pBlock,
LPSTR lpSubBlock,
LPVOID * lplpBuffer,
PUINT puLen
);
A bit more …
4
votes
1answer
59 views
How can I remap the keyboard with Perl on Win32?
I want to remap the keyboard with Perl on Win32 system. Is there any option to do that? If yes, could you provide an example?
Remapping the keyboard means form example when the user presses a, he …
4
votes
2answers
245 views
how to get USB hardware id using device id?
How to get hardware id of the usb device using device id...i am using vc++6.0 and OS is xp.
is it possible by using wmi.
