取鼠标水平位置()取鼠标垂直位置()


POINT 取鼠标水平位置(){
	POINT point; 
	GetCursorPos(&point);
	return point;
}