调用几个WinAPI函数会导致大约30个错误

时间:2011-11-08 02:58:57

标签: c++ c winapi

出于某种原因,我尝试调用AdjustWindowRect或GetClientRect,我提供的参数很好。我得到大约30个错误,其中没有一个与调用WinAPI函数有关。

什么可能导致这样的事情?

由于

例如:

以下代码:

   case WM_GETMINMAXINFO:
          {
              LPMINMAXINFO p_info = (LPMINMAXINFO)lParam;
              RECT rc = {0,0,d->w,d->h};
              DWORD dwStyle = GetWindowLongPtr( hWnd, GWL_STYLE ) ;
              AdjustWindowRect(&rc,dwStyle,FALSE);
              int total_border_width = 2 * GetSystemMetrics( SM_CXFRAME ) + 4;
              int total_border_height = 2 * GetSystemMetrics( SM_CYFRAME ) + 
                 GetSystemMetrics( SM_CYCAPTION ) - GetSystemMetrics( SM_CYBORDER ) + 5;
              POINT min,max;

              min.x = d->min_w > 0 ? d->min_w + total_border_width : p_info->ptMinTrackSize.x;
              min.y = d->min_h > 0 ? d->min_h + total_border_height : p_info->ptMinTrackSize.y;
              max.x = d->max_w > 0 ? d->max_w + total_border_width : p_info->ptMaxTrackSize.x;
              max.y = d->max_h > 0 ? d->max_h + total_border_height : p_info->ptMaxTrackSize.y;

              p_info->ptMinTrackSize = min;
              p_info->ptMaxTrackSize = max;
          }

产地:

Error   6   error C2065: 'max' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  844
Error   13  error C2065: 'max' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  848
Error   16  error C2065: 'max' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  849
Error   21  error C2065: 'max' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  852
Error   5   error C2065: 'min' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  844
Error   7   error C2065: 'min' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  846
Error   10  error C2065: 'min' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  847
Error   19  error C2065: 'min' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  851
Error   12  error C2065: 'total_border_height' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  847
Error   18  error C2065: 'total_border_height' : undeclared identifier  c:\Users\Josh\Documents\AL51\src\win\wwindow.c  849
Error   9   error C2065: 'total_border_width' : undeclared identifier   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  846
Error   15  error C2065: 'total_border_width' : undeclared identifier   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  848
Error   1   error C2143: syntax error : missing ';' before 'type'   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  841
Error   2   error C2143: syntax error : missing ';' before 'type'   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  842
Error   4   error C2146: syntax error : missing ';' before identifier 'min' c:\Users\Josh\Documents\AL51\src\win\wwindow.c  844
Error   8   error C2224: left of '.x' must have struct/union type   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  846
Error   14  error C2224: left of '.x' must have struct/union type   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  848
Error   11  error C2224: left of '.y' must have struct/union type   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  847
Error   17  error C2224: left of '.y' must have struct/union type   c:\Users\Josh\Documents\AL51\src\win\wwindow.c  849
Error   3   error C2275: 'POINT' : illegal use of this type as an expression    c:\Users\Josh\Documents\AL51\src\win\wwindow.c  844
Error   20  error C2440: '=' : cannot convert from 'int' to 'POINT' c:\Users\Josh\Documents\AL51\src\win\wwindow.c  851
Error   22  error C2440: '=' : cannot convert from 'int' to 'POINT' c:\Users\Josh\Documents\AL51\src\win\wwindow.c  852

1 个答案:

答案 0 :(得分:2)

Visual C ++仅支持C90(而不是C99),因此在编译C程序时,必须在任何语句之前将所有变量声明放在块的顶部。

minmaxtotal_border_heighttotal_border_width的声明都在块中至少有一条声明之后。