Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmusic.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactX Diagnosis Application 00003 * LICENSE: LGPL - See COPYING in the top level directory 00004 * FILE: base/applications/dxdiag/music.c 00005 * PURPOSE: ReactX diagnosis music page 00006 * COPYRIGHT: Copyright 2008 Johannes Anderwald 00007 * 00008 */ 00009 00010 #include "precomp.h" 00011 00012 INT_PTR CALLBACK 00013 MusicPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) 00014 { 00015 UNREFERENCED_PARAMETER(lParam); 00016 UNREFERENCED_PARAMETER(wParam); 00017 switch (message) { 00018 case WM_INITDIALOG: 00019 { 00020 SetWindowPos(hDlg, NULL, 10, 32, 0, 0, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER); 00021 return TRUE; 00022 } 00023 } 00024 00025 return FALSE; 00026 } Generated on Sun May 27 2012 04:16:35 for ReactOS by
1.7.6.1
|