john pfeiffer
  • Home
  • Categories
  • Tags
  • Archives

Win CE draw pixel

VOID drawPixel(  HWND hwnd ,
int x , int y , long color )
{   HDC  hdc;
    hdc = GetDC(hwnd); 
    SetPixel(  hdc ,  x  , y , color );
    ReleaseDC(hwnd, hdc);
}

  • « Win CE set memory wmemset
  • Win CE clear display »

Published

Aug 1, 2010

Category

c

~21 words

Tags

  • convert-to-win32 13
  • drawpixel 1
  • win-ce 40