About 2,300,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. Strawberry Perl doesn't include Win32::shortcut? - Stack Overflow

    Jan 4, 2025 · I'm not versed in Perl, but from what I can tell it doesn't have Win32::shortcut.pm in the install. This is a fresh install using strawberry-perl-5.40.0.1-64bit.msi on a Windows 10 …

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

    Apr 4, 2020 · 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.

  6. Send email with Python in Windows 11 with "Outlook (New)"

    Oct 30, 2023 · I am trying to send an email in a Windows 11 machine, with a Python code that was previously working on a different Windows 10 machine with Outlook installed. It seems …

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

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

  9. winapi - How to use Win32 API with Python? - Stack Overflow

    Jun 21, 2009 · How can I use win32 API in Python? What is the best and easiest way to do it? Can you please provide some examples?

  10. Creating a transparent window in C++ Win32 - Stack Overflow

    I'm creating what should be a very simple Win32 C++ app whose sole purpose it to ONLY display a semi-transparent PNG. The window shouldn't have any chrome, and all the opacity should …