gpt4 book ai didi

c++ - 包含 windows.h 和 wingdi.h 时出现 "GradientFill was not declared in this scope"错误

转载 作者:行者123 更新时间:2023-11-28 05:40:21 27 4
gpt4 key购买 nike

代码如下:

#include <windows.h>
#include <wingdi.h>
#include <tchar.h>
#include <string>
#include <iostream>

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) //handling the message; all cases should be in logical order
{
case WM_PAINT:
{
PAINTSTRUCT ps;
HDC hdc;
GRADIENT_RECT rc;
TRIVERTEX vertex[2] ;
//vertex settings...

hdc = BeginPaint(hwnd, &ps);
GradientFill(hdc, vertex, 2, &rc, 1, GRADIENT_FILL_RECT_V);
EndPaint(hwnd, &ps);
break;
}
}
}

我从标题中得到消息,当我切换 wingdi.h 和 windows.h 时,我从 wingdi.h 文件中得到了很多错误。我使用代码块。

最佳答案

GradientFill 的文档告诉您,哪个 header 声明了一个符号以及要包含哪个 header :

Header: WinGdi.h (include Windows.h)

同时 GradientFillWinGdi.h 中声明,您应该 #include <Windows.h>仅有的。


注意:如果这不能解决您的问题,您可能需要考虑选择另一个 IDE。众所周知,Code::Blocks 很脆弱,有很多问题,并且对错误的默认设置情有独钟(例如 ANSI/Codepage 字符编码与 Unicode)。 Visual Studio Community 2015是一个功能齐全的 IDE,可以免费使用。

关于c++ - 包含 windows.h 和 wingdi.h 时出现 "GradientFill was not declared in this scope"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37243099/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com