/******************************************************************** ** File Name: common_gui_object_changepin.h ** ** File Description: The header file of dvb adjust gui object ** ** Copyright(c) 2009 Sunplus Technologies - All Rights Reserved ** ** History Information Description ** Date Author Modification ** 2009/04/21 Victor.Chen Create ********************************************************************/ #ifndef _APP_GUIOBJ_CHANGEPIN_H_ #define _APP_GUIOBJ_CHANGEPIN_H_ typedef struct _changepin_data { HWND h_title; HWND h_BG_PWD[3]; }CHANGEPIN_DATA; typedef enum _PinCode_type_ { PINCODE_TYPE_CHILD_LOCK = 0, PINCODE_TYPE_CA_MODULE, PINCODE_TYPE_MAX, }PINCODE_TYPE_E; /******************************************************************* * Function: CA module and child lock need change pin function. * * ********************************************************************/ void APP_GUIOBJ_ChangePin_SetOriginType(PINCODE_TYPE_E type); PINCODE_TYPE_E APP_GUIOBJ_ChangePin_GetOriginType(void); #endif