Author: nyadav Date: Fri May 27 09:40:19 2011 New Revision: 51954
URL: http://svn.reactos.org/svn/reactos?rev=51954&view=rev Log: [AUDSRV] Add a client to test audio server
Added: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/ (with props) branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt (with props) branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c (with props) Modified: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/CMakeLists.txt
Modified: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/nyadav-audio-branch/drivers/wdm/... ============================================================================== --- branches/nyadav-audio-branch/drivers/wdm/audio/backpln/CMakeLists.txt [iso-8859-1] (original) +++ branches/nyadav-audio-branch/drivers/wdm/audio/backpln/CMakeLists.txt [iso-8859-1] Fri May 27 09:40:19 2011 @@ -1,3 +1,4 @@
add_subdirectory(audio_test) +add_subdirectory(audclient) add_subdirectory(portcls)
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/ ------------------------------------------------------------------------------ --- bugtraq:logregex (added) +++ bugtraq:logregex Fri May 27 09:40:19 2011 @@ -1,0 +1,2 @@ +([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))? +(\d+)
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/ ------------------------------------------------------------------------------ bugtraq:message = See issue #%BUGID% for more details.
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/ ------------------------------------------------------------------------------ bugtraq:url = http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/ ------------------------------------------------------------------------------ tsvn:logminsize = 10
Added: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/nyadav-audio-branch/drivers/wdm/... ============================================================================== --- branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt (added) +++ branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt [iso-8859-1] Fri May 27 09:40:19 2011 @@ -1,0 +1,10 @@ +set_unicode(audclient yes) + + + +add_executable(audclient + audclient.c) +include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/audsrv) +set_module_type(audclient win32cui) +add_importlibs(audclient audsrvapi advapi32 user32 ksuser setupapi msvcrt kernel32) +add_cab_target(audclient 1)
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/CMakeLists.txt ------------------------------------------------------------------------------ svn:mime-type = text/plain
Added: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c URL: http://svn.reactos.org/svn/reactos/branches/nyadav-audio-branch/drivers/wdm/... ============================================================================== --- branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c (added) +++ branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c [iso-8859-1] Fri May 27 09:40:19 2011 @@ -1,0 +1,12 @@ +#define WIN32_NO_STATUS +#define _KSDDK_ + +#include <audsrvapi.h> +#include <stdio.h> +int +__cdecl +wmain(int argc, char* argv[]) +{ + printf("ReactOS Audio Mixer Sample Client.\n"); + return 0; +}
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: branches/nyadav-audio-branch/drivers/wdm/audio/backpln/audclient/audclient.c ------------------------------------------------------------------------------ svn:mime-type = text/plain