Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emilhernvall/chatclient
A badly working irc client for win32
https://github.com/emilhernvall/chatclient
Last synced: about 2 months ago
JSON representation
A badly working irc client for win32
- Host: GitHub
- URL: https://github.com/emilhernvall/chatclient
- Owner: EmilHernvall
- Created: 2011-05-03T18:16:52.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-03T18:17:01.000Z (over 13 years ago)
- Last Synced: 2023-03-11T22:52:50.938Z (almost 2 years ago)
- Language: C++
- Homepage:
- Size: 141 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.txt
Awesome Lists containing this project
README
/*case WM_ERASEBKGND:
hdc = (HDC)wParam;
GetClientRect(hWnd, &rcArea);hBg = LoadImage(hInst, MAKEINTRESOURCE(IDB_BITMAP1), IMAGE_BITMAP, 0, 0, 0);
if (hBg == NULL) {
ErrorExit(TEXT("LoadImage"));
}hdcSource = CreateCompatibleDC(hdc);
SelectObject(hdcSource, hBg);GetObject(hBg, sizeof(BITMAP), &bmp);
StretchBlt(hdc, rcArea.left, rcArea.top, rcArea.right - rcArea.left, rcArea.bottom - rcArea.top,
hdcSource, 0, 0, bmp.bmWidth, bmp.bmHeight, MERGECOPY);brush.lbColor = RGB(255, 0, 0);
brush.lbHatch = 0;
brush.lbStyle = BS_SOLID;
FillRect(hdc, &rcArea, CreateBrushIndirect(&brush));
return 1;*/