5
votes
8answers
226 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 struc …
3
votes
2answers
77 views
Cross platform unicode path handling
I'm using boost::filesystem for cross-platform path manipulation, but this breaks down when calls need to be made down into interfaces I don't control that won't accept UTF-8. For …
0
votes
1answer
29 views
Overwriting an Open File in Windows
In what situations does Windows allow you to overwrite an open file? Is that ever allowed? This includes renaming a different file to the same name as an open file.
2
votes
4answers
68 views
Why Win32 HeapReAlloc() changes values?
Hi there!
I'm writing an app in C using win32 API.
When I try to enlarge the size of my array, using the HeapRealloc() function, it changes my current values in the array, instead …
1
vote
6answers
67 views
How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate?
How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate?
1
vote
2answers
39 views
Scancode when I press a key is different. Is Microsoft specification wrong?
I am using Windows XP pro SP3. Standard english keyboard. I live in the USA; never touched the keyboard settings. Stock install. So, when I press check the scancodes my program is …
0
votes
5answers
47 views
Win32 CreateWindow() call hangs in child thread?
I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a par …
0
votes
1answer
44 views
Encapsulating WndProc Problem.
Okay so i wrote a basic class to do encapsulation of a win32 window. I ended up creating a static router callback function to route the messages into another function of the class. …
1
vote
6answers
122 views
Most efficient way to create and write multiple 10 KB text files?
We're using the following approach to writing out text files:
public void WriteFile(string filePath, string contents)
{
if (string.IsNullOrEmpty(filePath)) { throw new Argumen …
0
votes
1answer
19 views
How to call IsDialogMessage in a Modal Dialog
In my Win32 app, I had a modal dialog that displays settings that I had to add more settings to. In order to fit the new settings, I dropped a TabCtrl in the dialog and implemented …
1
vote
1answer
26 views
Win32 DrawText line height
I'm calling the Win32 DrawText function to output some text into a device context. The text is long and wraps nicely onto a second line. The problem is I need to decrease the spa …
0
votes
1answer
32 views
how to draw image on a window
Dear All,
I have created a window with createwindow() api using vs2005 in c++ on windows Vista
My requirement is to draw image(any format) on that window.
I am not using any MFC …
1
vote
3answers
40 views
Determine the current HINSTANCE?
The HINSTANCE of a win32 application is passed to WinMain, but is there any other way of determining the current HINSTANCE (in case you couldn't tell, I'm very new to win32 program …
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, …
1
vote
3answers
49 views
Waiting until a file is available for reading with Win32
I'm watching a directory by calling ReadDirectoryChangesW synchronously. When a new file is available, I try to access it immediately with CreateFile with GENERIC_READ and FILE_SHA …
