46
votes
8answers
3k views
What Does {0} Mean in C?
When {0} is used to initialize an object in C/C++, what does it mean? I can't find any references to {0} anywhere, and because of the curly braces Google searches are not helpful.
Example code:
…
21
votes
21answers
2k views
Does it still make sense to learn low level WinAPI programming?
Does it make sense, having all of the C#-managed-bliss, to go back to Petzold's Programming Windows and try to produce code w/ pure WinAPI?
What can be learn from it? Isn't it just too outdated to be …
20
votes
7answers
1k views
Find out what process registered a global hotkey? (Windows API)
As far as I've been able to find out, Windows doesn't offer an API function to tell what application has registered a global hotkey (via RegisterHotkey). I can only find out that a hotkey is …
18
votes
8answers
5k views
What is the easiest way to parse an INI File in C++?
I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an …
13
votes
9answers
560 views
Why the performance difference between C# (quite a bit slower) and Win32/C?
We are looking to migrate a performance critical application to .Net and find that the c# version is 30% to 100% slower than the Win32/C depending on the processor (difference more marked on mobile …
13
votes
15answers
1k views
How relevant is Win32 programming to modern professionals?
As a big fan of Charles Petzold's books Code and The Annotated Turing I came across his book Programming Windows which teaches Win32 programming in C. I am a freshman computer science student who …
13
votes
5answers
7k views
Objective C for Windows
What would be the best way to write Objective-C on the Windows platform?
Cygwin and gcc? Is there a way I can somehow integrate this into Visual Studio?
Along those lines - are there any suggestions …
12
votes
13answers
828 views
What are some examples of Windows desktop applications with beautiful GUIs?
This is a subjective question. For those who are Windows developers coding desktop applications, what are the most beautiful or nice looking GUI you have ever seen or built?
Why am I asking this? I'm …
11
votes
6answers
622 views
Converting Win16 C code to Win32
In general, what needs to be done to convert a 16 bit Windows program to Win32? I'm sure I'm not the only person to inherit a codebase and be stunned to find 16-bit code lurking in the corners.
The …
11
votes
10answers
4k views
How do you configure an OpenFileDIalog to select folders?
In VS .NET, when you are selecting a folder for a project, a dialog that looks like an OpenFileDialog or SaveFileDialog is displayed, but is set up to accept only folders. Ever since I've seen this …
11
votes
9answers
1k views
Where is a good place to start programming GUIs for windows?
I have experience writing console and network client/server apps in C and C++, but I know next to nothing about using the win32 visual API, MFC, QT, WxWidgets, etc. Where is a good place to start, …
9
votes
3answers
278 views
How to make sure that a file was permanently saved on USB, when user doesn’t use “Safely Remove Hardware”?
When I save a file on a USB within my delphi application, how can I make sure the file is really (permanently) saved on the USB, when "Safely Remove Hardware" is not performed (especially forgotten to …
9
votes
7answers
434 views
Does the .NET runtime internally map to win32 function calls?
In other words, does the .NET framework eventually make calls somewhere to get its work done? Or did Microsoft completely re-create all the functionality of the win32 library in their .NET framework.
…
9
votes
8answers
468 views
Where should my win32 program keep its files?
Our win32 applications (written in C++) have been around for over 10 years, and haven't been updated to follow "good practices" in terms of where they keep files. The application defaults to …
9
votes
15answers
745 views
Is Learning the win32 API Worthwhile?
I was certain that somebody would have specifically asked this question, but from what I can see no-one has (there's been a question about learning win32 but that doesn't cover whether it's worthwhile …
