首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C语言 >

POINT结构是在哪个文件中定义的?该怎么解决

2012-06-17 
POINT结构是在哪个文件中定义的?typedef structtagPOINT{LONG xLONG y} POINT在很多文件中用到这个结构

POINT结构是在哪个文件中定义的?
typedef struct tagPOINT
  {
  LONG x;
  LONG y;
  } POINT;

在很多文件中用到这个结构,但我找不到出处。

[解决办法]
windef.h
[解决办法]
LZ要学会查MSDN:
============================

POINT
The POINT structure defines the x- and y- coordinates of a point. 

typedef struct tagPOINT { 
LONG x; 
LONG y; 
} POINT, *PPOINT; 
Members

Specifies the x-coordinate of the point. 

Specifies the y-coordinate of the point. 
Requirements 
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Windef.h; include Windows.h.

热点排行