⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialogs.h

📁 这个是boot gui的程序
💻 H
字号:
/*
 *  Start of Zoran Standard Header
 *  Copyright (c) 2005 Zoran Corporation
 *  
 *  
 *  All rights reserved.  Proprietary and confidential.
 *  
 *  DESCRIPTION for dialogs.h
 *      Enumeration of the dialogs in the GUI
 *  
 *  NEW HISTORY COMMENT (description must be followed by a blank line)
 *  <Enter change description here>

 *  ===== HISTORY of changes in //depot/imgeng/sw/se_gw/gui/dialogs.h
 *  
 *   9/Dec/05 #2  dstrauss   event is an unsigned int; deleted MessageDialog
 *   5/Dec/05 #1  dstrauss   Created.
 *  
 *
 *  End of Zoran Standard Header
 */
#ifndef _DIALOGS_H_
#define _DIALOGS_H_

/* A dialog routine gets passed an event and returns either
 * a NULL (no action required) or the address of the next
 * dialog routine to run.  Note that the routine actually
 * returns a void pointer; this is required in order to
 * avoid an infinitely-recursive function declaration.
 */

typedef void *(DlgRoutine)(unsigned int event);

extern DlgRoutine SplashDialog;
extern DlgRoutine MainDialog;
extern DlgRoutine ImageSelectDialog;
extern DlgRoutine AcknowledgeDialog;

#define FirstDialog SplashDialog

#endif /* _DIALOGS_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -