20151124_안향진_API_9
=그래프 바탕 흰색으로 수정PatBlt BOOL PatBlt(HDC hdc, int nXLeft, int nYLeft, int nWidth, int nHeight, DWORD dwRop); HBRUSH hBrWhite; hBrWhite = CreateSolidBrush(RGB(255,255,255));(HBRUSH)SelectObject(hdc,hBrWhite) ; PatBlt(hdc,200,50,100,100,PATCOPY); #include #define XPOS 20 #define YPOS 20 #define SWIDTH 150 #define SHEIGHT 25 #define YGAP 5 #define XGAP 10 #define XGRAPH 256 // 0 ~ 255 #define YGRAPH 2..
2015. 11. 24.
(작성중) 20151124 - 주재민
#include 비디오 영상처리를 위한 것 vfw32추가 #include #include //#pragma comment(lib,"vfw32.lib") typedef struct { UINT uiMSG; LRESULT(*fp) (HWND, WPARAM, LPARAM); }stMSG_Map; LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT On_Paint(HWND hWnd, WPARAM wParam, LPARAM lParam); LRESULT On_Create(HWND hWnd, WPARAM wParam, LPARAM lParam); LRESULT On_Destroy(HWND hWnd, WPARAM wParam, LPARAM lParam); H..
2015. 11. 24.