📄 o_digest_defs.h
字号:
/* **************************************************************************************
* Copyright (c) 2005 ZORAN Corporation, All Rights Reserved
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
*
* File: $Workfile: o_digest_defs.h $
*
* Description:
* ============
* Project definition of the
*
****************************************************************************************/
#ifndef _O_DIGEST_DEFS_H_
#define _O_DIGEST_DEFS_H_
#include "GUI\Menu_system\ms_component_defs.h"
/***************************************************************************************
* The Digest component public macro.
****************************************************************************************/
#define MAX_DIGEST_COLUMN 3
#define MAX_DIGEST_ROW 3
#define TOTAL_DIGEST_NUM (MAX_DIGEST_COLUMN * MAX_DIGEST_ROW)//Display nine jpeg picture on the screen
/***************************************************************************************
* The Digest component descriptor.
****************************************************************************************/
/***************************************************************************************
* digest descriptor.
****************************************************************************************/
typedef MS_DESCRIPTOR_COMPONENT MS_DESCRIPTOR_DIGEST_COMPONENT;
/***************************************************************************************
* The Digest item object.
****************************************************************************************/
typedef struct {
UINT16 mwTotalItems; //the index of nine object(0,1,2,…8)
} MSO_PARAM_DIGEST_COMPONENT;
typedef struct {
MSO_COMPONENT moComponent;
MSO_PARAM_DIGEST_COMPONENT moParam;
} MSO_DIGEST_COMPONENT;
typedef struct
{
UINT16 wIndex; //keep index of every container in component(0,1,2…8)
} MSO_PARAM_DIGEST_ITEM;
typedef struct
{
MSO_CONTAINER moContainer;
MSO_PARAM_DIGEST_ITEM moParam;
} MSO_DIGEST_ITEM;
typedef MS_DESCRIPTOR_CONTAINER MS_DESCRIPTOR_DIGEST_ITEM;
#endif //_O_DIGEST_DEFS_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -