app_guiobj_changepin.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /********************************************************************
  2. ** File Name: common_gui_object_changepin.h
  3. **
  4. ** File Description: The header file of dvb adjust gui object
  5. **
  6. ** Copyright(c) 2009 Sunplus Technologies - All Rights Reserved
  7. **
  8. ** History Information Description
  9. ** Date Author Modification
  10. ** 2009/04/21 Victor.Chen Create
  11. ********************************************************************/
  12. #ifndef _APP_GUIOBJ_CHANGEPIN_H_
  13. #define _APP_GUIOBJ_CHANGEPIN_H_
  14. typedef struct _changepin_data
  15. {
  16. HWND h_title;
  17. HWND h_BG_PWD[3];
  18. }CHANGEPIN_DATA;
  19. typedef enum _PinCode_type_
  20. {
  21. PINCODE_TYPE_CHILD_LOCK = 0,
  22. PINCODE_TYPE_CA_MODULE,
  23. PINCODE_TYPE_MAX,
  24. }PINCODE_TYPE_E;
  25. /*******************************************************************
  26. * Function: CA module and child lock need change pin function.
  27. *
  28. *
  29. ********************************************************************/
  30. void APP_GUIOBJ_ChangePin_SetOriginType(PINCODE_TYPE_E type);
  31. PINCODE_TYPE_E APP_GUIOBJ_ChangePin_GetOriginType(void);
  32. #endif