dialogs.h

来自「这个是boot gui的程序」· C头文件 代码 · 共 42 行

H
42
字号
/*
 *  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 + =
减小字号Ctrl + -
显示快捷键?