00001 #ifndef __KSJ_API_STREAM_H__
00002 #define __KSJ_API_STREAM_H__
00003 
00004 // #pragma message("Include KSJApiBase.h") 
00005 
00006 #ifdef KSJAPI_EXPORTS
00007 #define KSJ_API __declspec(dllexport)
00008 #elif defined KSJAPI_STATIC
00009 #define KSJ_API
00010 #else
00011 #define KSJ_API __declspec(dllimport)
00012 #endif
00013 
00014 #ifndef IN
00015 #define IN
00016 #endif
00017 
00018 #ifndef OUT
00019 #define OUT
00020 #endif
00021 
00022 #ifndef OPTIONAL
00023 #define OPTIONAL
00024 #endif
00025 
00026 #ifdef __cplusplus
00027 extern "C"{
00028 #endif
00029 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041     KSJ_API  int __stdcall KSJ_IsSupportStreamMode(int nIndex, bool* pbSupport);
00042 
00052     KSJ_API  int __stdcall KSJ_StreamIsStart(int nIndex, bool* pbStart);
00053 
00062     KSJ_API  int __stdcall KSJ_StreamStart(int nIndex);
00063     
00072     KSJ_API  int __stdcall KSJ_StreamStop(int nIndex);
00074 #ifdef __cplusplus
00075 }
00076 #endif
00077 
00078 #endif