Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Windows API
  4. 32bit or 64bit

32bit or 64bit

Scheduled Pinned Locked Moved Windows API
question
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    messages
    wrote on last edited by
    #1

    Hi everyone, How can I understand vista is 32bit or 64bit that installed on the computer?

    J 1 Reply Last reply
    0
    • M messages

      Hi everyone, How can I understand vista is 32bit or 64bit that installed on the computer?

      J Offline
      J Offline
      Jonathan Darka
      wrote on last edited by
      #2

      You can do this easily by clicking on the "START" button, then right click on "Computer" and select "Properties" and look at the System Type. Or in C++;

      bool Is64BitOS()
      {
          SYSTEM_INFO sysInfo;
          GetSystemInfo(&sysInfo);
      
          if((sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) // x64 (AMD or Intel)
              || (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)) // Intel Itanium Processor 
              return true;
      
      
              return false;
      }
      

      regards,


      Jonathan Wilkes Darka[Xanya.net]

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups