About 2,240,000 results
Open links in new tab
  1. What's the difference between the WIN32 and _WIN32 defines in …

    Mar 16, 2019 · 64 WIN32 is a name that you could use and even define in your own code and so might clash with Microsoft's usage. _WIN32 is a name that is reserved for the implementor (in …

  2. Which Cross Platform Preprocessor Defines? (__WIN32__ or …

    Jun 7, 2010 · I often see __WIN32, WIN32 or __WIN32__. I assume that this depends on the used preprocessor (either one from visual studio, or gcc etc). Do I now have to check first for …

  3. Where is WIN32 defined, and how can I include this definition in …

    Feb 6, 2017 · The problem is that #if defined (WIN32) fails and the compilation fails when trying to #include unistd.h which I don't want to do. I have third party project that works with this header …

  4. Should I define both _WIN32 and _WIN64 in 64bit build?

    6 _WIN32:Defined for applications for Win32 and Win64. Always defined. _WIN64:Defined for applications for Win64. More detail: Predefined Macros . To put it simply, WIN32/_WIN32 is …

  5. user interface - Creating GUIs in Win32 C++ - Stack Overflow

    Oct 19, 2015 · Here's a good primer (introduces dialog boxes, text boxes, buttons, etc): theForger's Win32 API Tutorial And here's where you go from there (numeric up-downs, list …

  6. windows - Why is everything named win32? - Stack Overflow

    Aug 1, 2017 · The introduction of "Win32" was the last substantial change to the Windows API, and it's called "Win32" regardless of the target architecture. The SDK headers use _WIN32 to …

  7. c++ - Is there a difference between use of _WINDOWS_ and …

    Sep 13, 2022 · The former (_WIN32) will be defined for x86, x64, ARM and ARM-64 architectures; the latter (_WIN64) will be defined only for the two 64-bit architectures. However, the …

  8. What is _WIN32_WINNT and how does it work? - Stack Overflow

    Feb 27, 2013 · _WIN32_WINNT is a preprocessor token, which is replaced by (0x0601) wherever _WIN32_WINNT is used. The preprocessor just scans the whole file and replaces …

  9. How can we check if a file Exists or not using Win32 program?

    Sep 30, 2010 · How can we check if a file Exists or not using a Win32 program? I am working for a Windows Mobile App.

  10. How to list all properties of a PowerShell WMI object

    Get-WmiObject -Class "Win32_computersystem" | Format-List * Get-WmiObject -Class "Win32_computersystem" | Format-List -Property * For certain objects, PowerShell provides a …