Top "Winapi" questions

The Windows API (formerly called the Win32 API) is the core set of application programming interfaces available for the Microsoft Windows operating systems.

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

What's a better way to start a thread, _beginthread, _beginthreadx or CreateThread? I'm trying to determine what are the advantages/…

c++ c multithreading winapi
Find the path of notepad.exe and mspaint.exe

What is the best way to find out where notepad.exe and mspaint.exe are that will work across various …

winapi search filesystems filepath
How to get screen resolution in C++?

Possible Duplicate: How to get the Monitor Screen Resolution from an hWnd? Is there a way to get the screen …

c++ windows winapi screen-resolution
When do we need to set ProcessStartInfo.UseShellExecute to True?

// // Summary: // Gets or sets a value indicating whether to use the operating system shell // to start the process. // // Returns: // true …

c# .net winapi
How detect current screen resolution?

How do I from Winapi (in C or C++) detect the current screen resolution? Some background: I want to start …

c++ c winapi api resolution
Get Application's Window Handles

I'm building an app that given another app mainWindowhandle it collects information about the window state. I have no problem …

c# .net winapi handle
What should I use to replace gettimeofday() on Windows?

I'm writing a portable Socket class that supports timeouts for both sending and receiving... To implement these timeouts I'm using …

windows select winapi gettimeofday
How do I programmatically get the version of a DLL or EXE file?

I need to get the product version and file version for a DLL or EXE file using Win32 native APIs …

c++ winapi dll version exe
How can a Windows service execute a GUI application?

I have written a Windows service that allows me to remotely run and stop applications. These applications are run using …

c++ winapi windows-services
How to use Win32 API with Python?

How can I use win32 API in Python? What is the best and easiest way to do it? Can you …

python winapi api