1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - include - camera 3 File: camera_intr.h 4 5 Copyright 2007-2008 Nintendo. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Date:: 2008-09-17#$ 14 $Rev: 8556 $ 15 $Author: okubata_ryoma $ 16 *---------------------------------------------------------------------------*/ 17 18 #ifndef TWL_CAMERA_INTR_H_ 19 #define TWL_CAMERA_INTR_H_ 20 21 #include <twl/camera.h> 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 28 void CAMERA_SetMasterInterruptCore( BOOL enabled ); 29 BOOL CAMERA_GetMasterInterruptCore( void ); 30 void CAMERA_SetVsyncInterruptCore( CAMERAIntrVsync type ); 31 CAMERAIntrVsync CAMERA_GetVsyncInterruptCore( void ); 32 void CAMERA_SetBufferErrorInterruptCore( BOOL enabled ); 33 BOOL CAMERA_GetBufferErrorInterruptCore( void ); 34 35 36 #ifdef __cplusplus 37 } /* extern "C" */ 38 #endif 39 40 #endif /* TWL_CAMERA_INTR_H_ */ 41