Search Results

1
vote

Reading Unformatted Data

You have to open the device file with CreateFile and then use …
5
votes

Is there TextMate-like editor for Windows?

There's textmate clone for windows: e …
1
vote

Is there a way to redefine malloc at link time on Windows?

From version 3.0 Firefox uses a custom allocator (AFAIR jmalloc) -- you could check how they did it. I read that they had some problems with it. You may check this …
1
vote

Creating, opening and printing a word file from C++

When you have the file and just want to print it, then look at this entry at Raymond Chen's blog. You c …
0
votes

How can I tell if a Windows application (command line or GUI) is running on locked workstation or while user is logged out

Check this article ("Detecting session state changes, such as a locked workstation") by Raymond Chen. …
0
votes

How to determine a process “virtual size” (WinXP)?

In 32bit WindowsXP address space is divided in two 2GB parts: one part for the program and the other for the kernel. You can increase application part to 3GB using the …
3
votes

How to identify more than 4 gb ram on 32-bit machine

32bit operating systems CAN see more than 4GB of memory with PAE-enabled CPUs. It's just that the 32bit addr …