diff options
| author | George Hazan <ghazan@miranda.im> | 2021-12-26 15:58:40 +0300 | 
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2021-12-26 15:58:40 +0300 | 
| commit | fcbb395dc7ff3edab972b6d4b27dbbfb3305f5d7 (patch) | |
| tree | 8807aea6f2afce38b30ce60aa5ebf84a26992b73 /plugins/Scriver/src | |
| parent | af2958f2e82cb68392983da6f7f69fa3cd0c5276 (diff) | |
PBYTE -> uint8_t*
Diffstat (limited to 'plugins/Scriver/src')
| -rw-r--r-- | plugins/Scriver/src/globals.cpp | 2 | ||||
| -rw-r--r-- | plugins/Scriver/src/msglog.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index 1978bdbbd0..03b1fe1cb5 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -142,7 +142,7 @@ static int ackevent(WPARAM, LPARAM lParam)  	dbei.szModule = Proto_GetBaseAccountName(hContact);
  	dbei.timestamp = time(0);
  	dbei.cbBlob = (int)mir_strlen(item->sendBuffer) + 1;
 -	dbei.pBlob = (PBYTE)item->sendBuffer;
 +	dbei.pBlob = (uint8_t*)item->sendBuffer;
  	dbei.szId = (char *)pAck->lParam;
  	MessageWindowEvent evt = { item->hSendId, hContact, &dbei };
 diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 7d773d201b..76b1a7bde8 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -646,7 +646,7 @@ void LoadMsgLogIcons(void)  	HDC hdc = GetDC(nullptr);
  	HBITMAP hBmp = CreateCompatibleBitmap(hdc, bih.biWidth, bih.biHeight);
  	HDC hdcMem = CreateCompatibleDC(hdc);
 -	PBYTE pBmpBits = (PBYTE)mir_alloc(widthBytes * bih.biHeight);
 +	uint8_t *pBmpBits = (uint8_t*)mir_alloc(widthBytes * bih.biHeight);
  	HBRUSH hBrush = hBkgBrush;
  	for (int i = 0; i < _countof(pLogIconBmpBits); i++) {
  		switch (i) {
  | 
