About 1,800,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. 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 …

  4. 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 …

  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. c++ - Is there a difference between use of _WINDOWS_ and …

    Sep 13, 2022 · 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 …

  7. Define _WIN32_WINNT or _WIN32_WINDOWS appropriately

    Nov 13, 2022 · Warning: Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example: add -D_WIN32_WINNT=0x0601 to the compiler command line; or add …

  8. How can I download .vsix files now that the Visual Studio Code ...

    Jan 16, 2025 · What a life saver! Oracle is pushing its new sql developer extension. Despite of so many problems, Oracle discontinued the old one that actually works. The old one does not …

  9. what is the difference between win32 application, windows form ...

    Dec 15, 2013 · A "windows form application" is a GUI .NET app. A "win32 application" is a native Windows GUI app. A "console application" is a native app without GUI. I don't really …

  10. visual studio - C++ MSVC14.0 での WIN32マクロについて - ス …

    はじめまして.質問を見ていただいてありがとうございます. 私は最近,MSVC12.0(以降VC12)からMSVC14.0(以降VC14)への移行を始めた者です. 症状と原因 VC12では動作 …