9 lines
145 B
C
9 lines
145 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#define SET_RECT(rect, l, t, r, b) \
|
|
rect.left = l; \
|
|
rect.top = t; \
|
|
rect.right = r; \
|
|
rect.bottom = b;
|