All pastes #2093984 Raw Edit

Untitled

public cpp v1 · immutable
#2093984 ·published 2011-11-12 14:32 UTC
rendered paste body
LRESULT CALLBACK Fen::WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam){	switch(msg)	{	case WM_DESTROY:		is_run = false;		return (0);	default:		break;	}	LRESULT res = DefWindowProc(hwnd, msg, wParam, lParam);	return (res);}