summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/LCDFramework/CLCDGfx.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-12-26 15:58:40 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-12-26 15:58:40 +0300
commitfcbb395dc7ff3edab972b6d4b27dbbfb3305f5d7 (patch)
tree8807aea6f2afce38b30ce60aa5ebf84a26992b73 /plugins/MirandaG15/src/LCDFramework/CLCDGfx.h
parentaf2958f2e82cb68392983da6f7f69fa3cd0c5276 (diff)
PBYTE -> uint8_t*
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework/CLCDGfx.h')
-rw-r--r--plugins/MirandaG15/src/LCDFramework/CLCDGfx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/CLCDGfx.h b/plugins/MirandaG15/src/LCDFramework/CLCDGfx.h
index 2cc940e23b..b4e7c3c8e0 100644
--- a/plugins/MirandaG15/src/LCDFramework/CLCDGfx.h
+++ b/plugins/MirandaG15/src/LCDFramework/CLCDGfx.h
@@ -18,7 +18,7 @@ public:
CLCDGfx(void);
virtual ~CLCDGfx(void);
- bool Initialize(int nWidth, int nHeight, int nBPP, PBYTE pBitmapBits);
+ bool Initialize(int nWidth, int nHeight, int nBPP, uint8_t *pBitmapBits);
bool IsInitialized();
bool Shutdown(void);
@@ -49,7 +49,7 @@ public:
protected:
void Cache();
- int findNearestMatch(PBYTE targetArray, int iSourceIndex);
+ int findNearestMatch(uint8_t *targetArray, int iSourceIndex);
void EndTransition();
@@ -63,7 +63,7 @@ protected:
HDC m_hDC;
HBITMAP m_hBitmap;
HBITMAP m_hPrevBitmap;
- PBYTE m_pBitmapBits, m_pLcdBitmapBits, m_pSavedBitmapBits;
+ uint8_t *m_pBitmapBits, *m_pLcdBitmapBits, *m_pSavedBitmapBits;
bool m_bInitialized;