1
0
Fork 0
mirror of https://github.com/quantum5/Zalgo.git synced 2025-04-24 21:52:03 -04:00
Zalgo/include/resource.h

11 lines
313 B
C
Raw Normal View History

2013-03-30 13:05:37 -04:00
#define RID_ICON 1
#define RID_XSAMPA 2
#define RID_INIT 3
#define RID_LOOSE 4
inline void GetMessageFont(LOGFONT &lf) {
NONCLIENTMETRICS ncmMetrics = { sizeof(NONCLIENTMETRICS) };
SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, &ncmMetrics, 0);
memcpy(&lf, &ncmMetrics.lfMessageFont, sizeof lf);
}