professional audio NDK  1.1.3
include/apa/APACommon.h
00001 /*
00002  * Samsung Handset Platform
00003  * Copyright (c) 2007 Software Center, Samsung Electronics, Inc.
00004  * All rights reserved.
00005  * This software is the confidential and proprietary information
00006  * of Samsung Electronics, Inc. ("Confidential Information").  You
00007  * shall not disclose such Confidential Information and shall use
00008  * it only in accordance with the terms of the license agreement
00009  * you entered into with Samsung Electronics.
00010  */
00011 
00012 /*
00013  * @author <a href="mailto:haeseok@samsung.com">HaeSeok Oh</a>
00014  * @author <a href="mailto:lh.bang@samsung.com">LaeHyuk Bang</a>
00015  * @author <a href="mailto:jeongyeon.kim@samsung.com">JeongYeon Kim</a>
00016  * @author <a href="mailto:dbs.park@samsung.com">DaeBeom Park</a>
00017  *
00018  */
00019 
00020 #ifndef ANDROID_APA_COMMON_H
00021 #define ANDROID_APA_COMMON_H
00022 
00023 // This file is used in the JAM Framework and the JAM NDK.
00024 
00025 #ifdef __cplusplus
00026 extern "C" {
00027 #endif
00028 
00029 #define APA_RETURN_SUCCESS  0
00030 #define APA_RETURN_ERROR    1
00031 #define APA_RETURN_SUPPORT    2
00032 #define APA_RETURN_NOT_SUPPORT    3
00033 
00034 
00035 
00036 #ifdef __cplusplus
00037 }
00038 #endif
00039 
00040 #ifdef __cplusplus
00041 namespace android {
00042 #endif
00043 
00044 typedef enum _transport_type{
00045     TRANSPORT_OFF = 0,
00046     TRANSPORT_ON = 1
00047 } TransportType;
00048 
00049 #ifdef __cplusplus
00050 };
00051 #endif
00052 #endif