mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
27 lines
685 B
C
27 lines
685 B
C
|
/*
|
||
|
* PROJECT: ReactX Diagnosis Application
|
||
|
* LICENSE: LGPL - See COPYING in the top level directory
|
||
|
* FILE: base/applications/dxdiag/music.c
|
||
|
* PURPOSE: ReactX diagnosis music page
|
||
|
* COPYRIGHT: Copyright 2008 Johannes Anderwald
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "precomp.h"
|
||
|
|
||
|
INT_PTR CALLBACK
|
||
|
MusicPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||
|
{
|
||
|
UNREFERENCED_PARAMETER(lParam);
|
||
|
UNREFERENCED_PARAMETER(wParam);
|
||
|
switch (message) {
|
||
|
case WM_INITDIALOG:
|
||
|
{
|
||
|
SetWindowPos(hDlg, NULL, 10, 32, 0, 0, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER);
|
||
|
return TRUE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return FALSE;
|
||
|
}
|