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

📄 chk_defs.h

📁 电力系统中的保护装置全部代码
💻 H
字号:
 
/************************************************************************/
/*                                                                      */
/* FILE NAME                                            VERSION         */
/*                                                                      */
/*      PRO_defs.h                                      PLUS  1.0    	*/
/*                                                               	*/
/* COMPONENT                                                            */
/*                                                                      */
/*      PRO - protect structure	                                        */
/*                                                                      */
/* DESCRIPTION                                                          */
/*                                                                      */
/*      This file contains data structure definitions and constants for */
/*      the protect structure ,setting structure value structure        */
/*      SOE structure.                                                  */ 
/*                                                                      */
/* AUTHOR                                                               */
/*                                                                      */
/*      xianganzh    						        */
/*                                                                      */
/* DATA STRUCTURES                                                      */
/*                                                                      */
/*      None                                                            */
/*                                                                      */
/* FUNCTIONS                                                            */
/*                                                                      */
/*      None                                                            */
/*                                                                      */
/* DEPENDENCIES                                                         */
/*                                                                      */
/*      None                                                            */
/*                                                                      */
/* HISTORY                                                              */
/*                                                                      */
/*      NAME            DATE                    REMARKS                 */
/*                                                                      */
/*      zxa             04-20-2001      Created initial version 1.0     */
/*                                                                      */
/************************************************************************/
#include  "BaseDefine.h"

#ifndef CHK_DEFS
#define CHK_DEFS


/* define the check data structure.  */
typedef struct CHECK_STRUCT
{ 
/* 	Standard check struct information.   */	
	
	struct	CHECK_STRUCT  	
		*chk_link_next,         /* check linked list point next 	*/
		*chk_link_previous;	/* check linked list point previous	*/
	UNSIGNED	chk_id;                 /* Check ID        			*/
    	CHAR	*pSOE_name;		/* Pointer to check name 		*/
    	CHAR	*pSOE_back_name;		/* Pointer to check name 		*/
	UNSIGNED	SOE_Inf;
	UNSIGNED	closedown;
	UNSIGNED	startup_flag;
	UNSIGNED	pickup_flag;
	UNSIGNED	delay_time;
	VOID	(*chk_routine_handler)(struct CHECK_STRUCT *);/* check routine function*/
} CHECK;

#endif



		


 

























































































































































































⌨️ 快捷键说明

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