Копирует один прямоугольник в другой: BOOL CopyRect { LPRECT lprcDst,// сюда копируется CONST RECT *lprcSrc// отсюда берется );
Вернет ненулевое значение, если выполнена удачно. Пример: // TestAPI.cpp : Defines the entry point for the console application. //
#include "stdafx.h" #include "windows.h" #include "iostream.h"
void main() { RECT r1; RECT r2; r1.bottom = 1; r1.left = 1; r1.right =1; r1.top = 100; CopyRect(&r2,&r1); cout << r2.top << endl; }
|