win32programming

jack song 1 Reputation point
2020-12-15T13:37:15.7+00:00

Under win10 platform, which windows libraries need to be linked when writing win32c + + programs with DEV-C + +?

C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,537 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Castorix31 81,741 Reputation points
    2020-12-15T14:05:09.103+00:00

    I don't use Dev-C++ (VS 2019),
    but it depends on which APIs you use
    For a basic Win32 GUI Hello World, just
    kernel32.lib
    user32.lib
    +
    gdi32.lib if you draw things...
    (VS adds the VC Runtime)