ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

BOOL Display_InitClass ( HINSTANCE  hInstance)

Definition at line 52 of file display.c.

Referenced by WinMain().

{
    WNDCLASSEXW wincl;

    /* Set the fontdisplay window class structure */
    wincl.cbSize = sizeof(WNDCLASSEX);
    wincl.style = CS_DBLCLKS;
    wincl.lpfnWndProc = DisplayProc;
    wincl.cbClsExtra = 0;
    wincl.cbWndExtra = 0;
    wincl.hInstance = hInstance;
    wincl.hIcon = NULL;
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.hbrBackground = GetStockObject(WHITE_BRUSH);
    wincl.lpszMenuName = NULL;
    wincl.lpszClassName = g_szFontDisplayClassName;
    wincl.hIconSm = NULL;

    /* Register the window class, and if it fails return FALSE */
    if (!RegisterClassExW (&wincl))
    {
        return FALSE;
    }
    return TRUE;
}

Generated on Sat May 26 2012 04:38:58 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.