URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mw/] [src/] [mwin/] [winlib/] [insetr.c] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
#include "windows.h" #include "wintools.h" /* * WIN Draw Library */ void WINAPI InsetR(LPRECT lprc,int h,int v) { lprc->top += v; lprc->left += h; lprc->right -= 2*h-1; lprc->bottom -= 2*v-1; }
Go to most recent revision | Compare with Previous | Blame | View Log