这是代码:
#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的文档告诉您,哪个标头声明一个符号以及要包含的标头:
标题:WinGdi.h(包括Windows.h)
在WinGdi.h中声明了GradientFill
时,仅应使用#include <Windows.h>
。
注意:如果这不能解决您的问题,则可能需要考虑选择其他IDE。众所周知,代码:::块很脆弱,存在很多问题,并且对错误的默认设置情有独钟(例如ANSI /代码页字符编码与Unicode)。 Visual Studio Community 2015是功能齐全的IDE,可以免费使用。