About 10,500,000 results
Open links in new tab
  1. winapi - What is a Windows API? - Stack Overflow

    The Windows API (Application Programming Interface) is the complete set of functions (exported by several DLLs) that enables each application to do what it has to do with almost no …

  2. c - How does Windows API work? - Stack Overflow

    Mar 28, 2015 · The Windows API does not provide static libraries, because using static libraries would mean that you'd need to rebuild the application not only for every new version of …

  3. Straight forward example using CryptoAPI Next Generation (CNG) …

    Apr 19, 2021 · I'd like to implement data encryption and decryption in a C++ application running on Windows. I've spent considerable time looking around the Web and am thinking I should …

  4. What is the relationship between C and the Windows API?

    Jun 25, 2010 · If windows is running; is a programmer forced to program using the windows api to get something running on it or can the programmer not use the windows api at all and directly …

  5. Finding undocumented APIs in Windows - Stack Overflow

    Jun 19, 2012 · The Undocumented Functions A Primer of the Windows Architecture How To Find Undocumented Constants Used by Windows API Functions Undocumented Windows …

  6. How to make a function of MessageBox with Windows API

    Sep 7, 2024 · TEXT is for string literals, not for variables. And Windows API being related to C is not familiar with C++ std::string. You can use std::string::c_str() to get a null terminated C …

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

    Oct 22, 2016 · Both are part of the Windows API (sometimes called Win32), so the distinction is not "Win32 vs. COM". It is between a C-based API comprised of a set of free functions (for …

  8. c# - How to Call Windows API - Stack Overflow

    Jan 27, 2012 · Possible Duplicate: Windows API and .net languages I want to call native Windows API from .NET Framework. I want to have an easy way where I can call native API from high …

  9. download windows API reference (MSDN) for offline use

    I would like to have a windows API reference document available offline. MSDN is fine, but I also need this kind of information when I don't have access to internet. pdf, chm, help (for emacs) …

  10. c - How to catch copy/paste events inside of a Windows …

    Dec 24, 2024 · I'm currently developing an application in C++ using Windows API. My goal is to have the app have its own clipboard - users of the app should not be able to copy …