约 50 个结果
在新选项卡中打开链接
  1. What's the difference between the WIN32 and _WIN32 defines in C++

    2019年3月16日 · 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 this …

  2. Where does "win32" come from when I'm using windows 64bit

    The (note "formerly called the Win32 API") was restored to "Windows API" or "WinAPI", but "Win32" is firmly entrenched as the API name. Many thanks for your answer!

  3. c++ - Is there a difference between use of _WINDOWS_ and _WIN32 ...

    2022年9月13日 · Yes, there is a difference. The _WIN32 and _WIN64 tokens are defined (conditionally) depending on what platform is being targeted. The former (_WIN32) will be defined for x86, x64, …

  4. Where is WIN32 defined, and how can I include this definition in my ...

    2017年2月6日 · 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 file …

  5. Which Cross Platform Preprocessor Defines? (__WIN32__ or __WIN32 or ...

    2010年6月7日 · 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 os and then …

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

    2017年8月1日 · 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 select the API. …

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

    2015年10月19日 · 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 boxes, combo …

  8. How to create a Win32 Console Application in Visual Studio (2017)?

    2020年4月4日 · The Win32 templates have been renamed to Windows Desktop. In VS2017, If you want to create the Win32 Console Application,I suggest you could choose File->New->Project.

  9. 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 used to …

  10. What is the difference between Win32 API and COM API?

    2016年10月22日 · COM is a technology, Win32 API is a set of functions Windows exposes for applications to use. I doubt you should be selecting a version based on whether it's COM or not, …