?? custdgt.h
字號:
/* Copyright 1997, ESS Technology, Inc. *//* SCCSID @(#)custdgt.h 1.2 10/21/97 *//* * $Log$ */#ifdef DIGEST/************************************************************************ * Data type for digest windows index. ************************************************************************/typedef enum { r1c1, /* row #1, column #1 */ r1c2, r1c3, r2c1, r2c2, r2c3, r3c1, r3c2, r3c3} WINDOW_INDEX;/************************************************************************ * Global variables * There are two things that can be customized : * 1. digest_window[] : an index of digest window position, user can * design the sequences of digest windows display on the screen. * 2. num_of_digest_windows : number of digest windows defined in * digest_window[]. ************************************************************************/unsigned char digest_window[] = { r1c1, r1c2, r1c3, r2c1, r2c2, r2c3, r3c1, r3c2, r3c3};unsigned char move_window[] = { r1c1, r1c2, r1c3, r2c3, r3c3, r3c2, r3c1, r2c1, r2c2};int num_of_digest_windows = 9; /* MUST be the same as the number of elements in digest_window[] */#endif /* DIGEST */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -