如何在 MinGW 中使用 Windows API?

2021-12-18 00:00:00 winapi mingw c++

如何使用 Windows API.wikipedia.org/wiki/MinGW" rel="noreferrer">MinGW?

How to use the Windows API in MinGW?

推荐答案

每当我这样做时,我就

#include <windows.h>

然后开始编码.MinGW 附带一个 windows.h 文件,因此您无需执行任何额外操作.

and start coding. MinGW comes with a windows.h file so you don't need to do anything extra.

相关文章