CoreNVG.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:2k
- /****************************************************************************************
- * Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
- *
- * File: $Workfile: CoreNVG.h $
- *
- * Description: Interface for creating and manipulating a generic Array.
- * ============
- *
- *
- * Log:
- * ====
- * $Revision: 4 $
- * Last Modified by $Author: Johnk $ at $Modtime: 4/01/04 11:17p $
- ****************************************************************************************
- * Updates:
- ****************************************************************************************
- * $Log: /I76/I76_Common/I76_Reference/Playcore/Coremain/CoreNVG.h $
- *
- * 4 4/01/04 11:20p Johnk
- * support HW POWER_ON_RESUME
- *
- * 3 03-05-27 22:40 Fwang
- * Add NVM bookmark.
- *
- * 2 03-02-17 17:26 Billt
- * Add POWER_SEQUENCE_ON_EJECT
- *
- * 3 23/04/02 9:28 Nirm
- * - Added dependency in "Config.h".
- *
- * 2 9/01/02 14:44 Nirm
- * Corrected Include-Paths.
- *
- * 1 26/12/01 14:57 Nirm
- ****************************************************************************************/
- #include "Config.h" // Global Configuration - do not remove!
- #ifndef __CORENVG_H_
- #define __CORENVG_H_
- extern unsigned char g_power_state;
- extern unsigned char g_dl_state;
- extern unsigned char g_extram_content;
- #ifdef POWER_ON_RESUME
- extern unsigned short ResumeChecksum;
- extern unsigned char PonDVDBookmark;
- extern unsigned char BookmarkGPRM;
- extern unsigned char BookmarkSPRM_PGCN_NV_TMR;
- extern unsigned char BookmarkSPRM_NV_TMR;
- #endif //POWER_ON_RESUME
- #define POWER_SEQUENCE_IN_OFF_STATE 0xAA
- #define POWER_SEQUENCE_IN_ON_STATE 0x55
- #define POWER_SEQUENCE_OFF_REQUESTED 0xBB
- #define POWER_SEQUENCE_ON_REQUESTED 0x66
- #define POWER_SEQUENCE_ON_EJECT 0x33
- #define CD_NO_DOWNLOAD 0x00
- #define CD_REQUEST_USR_INPUT 0x11
- #define CD_PARTIAL_DOWNLOAD 0x22
- #define CD_TOTAL_DOWNLOAD 0x33
- #define CD_DONE_DOWNLOAD 0x44
- #define CD_FAILED_DOWNLOAD 0x55
- #define CD_CANCEL_DOWNLOAD CD_NO_DOWNLOAD
- #endif //__CORENVG_H_