task2.h

来自「进程之间通讯的一个例子」· C头文件 代码 · 共 74 行

H
74
字号
/*
  Copyright(c) Micro-Star International Co. Ltd.
  The copyright to the computer program(s) herein is the property of
  Micro-Star International Co. Ltd.
  The program(s) may be used and/or copied only with the written 
  permission of MSI or in accordance with the terms and conditions 
  stipulated in the agreement/contract under which the program(s) have 
  been supplied.
*/
/* 
 * MODULE FILE NAME: TASK2.H
 *
 * DESCRIPTION: 
 *	NONE
 *
 * NOTES:
 *  NONE
 *	
 * HISTORY:	
 *
 * $Log$
 *
 */

#ifndef _TASK2_H_
#define _TASK2_H_

/* INCLUDE FILES */

/* system-wise, independent */

/* kernel service */

/* project dependent */

/* third party */

/*
 * FUNCTION NAME: TASK2_Init
 * PURPOSE:
 *      Initialize for TASK2 operations.
 *
 * INPUT:
 *      None
 * OUTPUT:
 *       None
 * RETURN:
 *       BOOL
 * NOTES:
 *      
 */ 
BOOL TASK2_Init(void);

/*
 * FUNCTION NAME: TASK2_CreateTask
 * PURPOSE:
 *      Create the task of TASK2 Alerter.
 *
 * INPUT:
 *      None
 * OUTPUT:
 *       None
 * RETURN:
 *      BOOL -- return TRUE/FALSE 
 * NOTES:
 *      
 */ 
BOOL TASK2_CreateTask(void);

#endif _TASK2_H_



⌨️ 快捷键说明

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