📄 msgque.h
字号:
/*
$Workfile: msgque.h $
$Revision: 1.2 $
$Date: Aug 12 2003 09:10:56 $
*/
//******************************************************************
//
// Copyright (C) 2002. GENESIS MICROCHIP INC.
// All rights reserved. No part of this program may be reproduced
//
// Genesis Microchip Corp., 2150 Gold Street
// Alviso, CA 95002 USA
// Genesis Microchip Inc., 165 Commerce Valley Dr. West
// Thornhill, Ontario, Canada, L3T 7V8
//
//================================================================
//
// MODULE: define.h
//
// USAGE : Header file that defines global definitions, enums, etc..
//
//******************************************************************
#ifndef _MSGQUE_H_
#define _MSGQUE_H_
#define MAX_MSG_QUEUE_SIZE 1
#define QUEUE_EMPTY 0
typedef struct sMsgQueue
{
BYTE Head;
BYTE Tail;
BYTE Size;
BYTE Queue[MAX_MSG_QUEUE_SIZE];
}MsgQueueType;
extern MsgQueueType OsdQ;
extern MsgQueueType PowerHandlerQ;
#endif // _MSGQUE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -