summaryrefslogtreecommitdiff
path: root/plugins/TipperYM/src/bitmap_func.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-12-26 16:39:04 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-12-26 16:39:04 +0300
commit62a186697df33c96dc1a6dac0f4dfc38652fb96f (patch)
tree1437d0906218fae8827aed384026f2b7e656f4ac /plugins/TipperYM/src/bitmap_func.h
parentfcbb395dc7ff3edab972b6d4b27dbbfb3305f5d7 (diff)
BYTE -> uint8_t
Diffstat (limited to 'plugins/TipperYM/src/bitmap_func.h')
-rw-r--r--plugins/TipperYM/src/bitmap_func.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TipperYM/src/bitmap_func.h b/plugins/TipperYM/src/bitmap_func.h
index 96d5c7a29f..205d7ead75 100644
--- a/plugins/TipperYM/src/bitmap_func.h
+++ b/plugins/TipperYM/src/bitmap_func.h
@@ -64,9 +64,9 @@ void DestroySkinBitmap();
int DrawTextAlpha(HDC hdc, LPCTSTR lpString, int nCount, LPRECT lpRect, UINT uFormat);
void DrawIconExAlpha(HDC hdc, int xLeft, int yTop, HICON hIcon, int cxWidth, int cyWidth, UINT istepIfAniCur, HBRUSH hbrFlickerFreeDraw, UINT diFlags, bool bIsSmiley);
COLOR32* SaveAlpha(LPRECT lpRect);
-void RestoreAlpha(LPRECT lpRect, COLOR32 *pBits, BYTE alpha = 0xff);
+void RestoreAlpha(LPRECT lpRect, COLOR32 *pBits, uint8_t alpha = 0xff);
void PremultipleChannels();
void ColorizeBitmap();
-HRGN CreateOpaqueRgn(BYTE level, bool bOpaque);
+HRGN CreateOpaqueRgn(uint8_t level, bool bOpaque);
#endif