2011-09-21 13:28:02 +08:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2012-01-16 09:20:54 -05:00
|
|
|
* Audio Input Redirection Virtual Channel
|
2011-09-21 13:28:02 +08:00
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Vic Lee
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-10-19 12:38:31 -04:00
|
|
|
#ifndef FREERDP_AUDIN_CLIENT_MAIN_H
|
|
|
|
#define FREERDP_AUDIN_CLIENT_MAIN_H
|
2011-09-21 13:28:02 +08:00
|
|
|
|
2012-09-22 18:08:22 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <freerdp/dvc.h>
|
|
|
|
#include <freerdp/types.h>
|
2012-11-19 22:31:15 -05:00
|
|
|
#include <freerdp/addin.h>
|
2014-08-11 09:12:01 +02:00
|
|
|
#include <freerdp/channels/log.h>
|
2013-10-19 12:38:31 -04:00
|
|
|
#include <freerdp/client/audin.h>
|
2012-09-22 18:08:22 -04:00
|
|
|
|
2014-09-12 16:19:32 +02:00
|
|
|
#define TAG CHANNELS_TAG("audin.client")
|
|
|
|
|
2012-09-22 18:08:22 -04:00
|
|
|
#ifdef WITH_DEBUG_DVC
|
2014-09-12 16:19:32 +02:00
|
|
|
#define DEBUG_DVC(fmt, ...) WLog_DBG(TAG, fmt, ## __VA_ARGS__)
|
2012-09-22 18:08:22 -04:00
|
|
|
#else
|
2014-09-12 16:19:32 +02:00
|
|
|
#define DEBUG_DVC(fmt, ...) do { } while (0)
|
2012-09-22 18:08:22 -04:00
|
|
|
#endif
|
2011-09-21 13:28:02 +08:00
|
|
|
|
2013-10-19 12:38:31 -04:00
|
|
|
#endif /* FREERDP_AUDIN_CLIENT_MAIN_H */
|
2011-09-21 13:28:02 +08:00
|
|
|
|