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

Definition at line 2131 of file startmenu.cpp.

{
    static DynamicFct<RUNFILEDLG> RunFileDlg(TEXT("SHELL32"), 61);

    // RunFileDlg needs owner window to properly position dialog
    // that window will be disabled so we can't use DesktopBar
    RECT rect = {0};
#ifndef TASKBAR_AT_TOP
    rect.top = GetSystemMetrics(SM_CYSCREEN) - DESKTOPBARBAR_HEIGHT;
#endif
    rect.right = GetSystemMetrics(SM_CXSCREEN);
    rect.bottom = rect.top + DESKTOPBARBAR_HEIGHT;
    Static dlgOwner(0, 0, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, 0, 0);

     // Show "Run..." dialog
    if (RunFileDlg) {
        (*RunFileDlg)(dlgOwner, 0, NULL, NULL, NULL, RFF_CALCDIRECTORY);
    }
    DestroyWindow(dlgOwner);
    return 0;
}

Generated on Sat May 26 2012 06:42:29 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.