?? rlc.c
字號:
/*************************************************************************/
/* */
/* Copyright (c) 1993-1996 Accelerated Technology, Inc. */
/* */
/* PROPRIETARY RIGHTS of Accelerated Technology are involved in the */
/* subject matter of this material. All manufacturing, reproduction, */
/* use, and sales rights pertaining to this subject matter are governed */
/* by the license agreement. The recipient of this software implicitly */
/* accepts the terms of the license. */
/* */
/*************************************************************************/
/*************************************************************************/
/* */
/* FILE NAME VERSION */
/* */
/* rlc.c PLUS 1.2 */
/* */
/* COMPONENT */
/* */
/* RL - Release Information */
/* */
/* DESCRIPTION */
/* */
/* This file contains the core routines for the Release Information */
/* component. */
/* */
/* AUTHOR */
/* */
/* William E. Lamie, Accelerated Technology, Inc. */
/* */
/* DATA STRUCTURES */
/* */
/* None */
/* */
/* FUNCTIONS */
/* */
/* RLC_Release_Information Return pointer to release */
/* information string */
/* */
/* DEPENDENCIES */
/* */
/* nucleus.h System definitions */
/* */
/* HISTORY */
/* */
/* NAME DATE REMARKS */
/* */
/* W. Lamie 03-01-1993 Created initial version 1.0 */
/* D. Lamie 04-19-1993 Verified version 1.0 */
/* W. Lamie 03-01-1994 Replaced void with VOID, */
/* added pointer variable, */
/* resulting in version 1.1 */
/* R. Pfaff - */
/* D. Lamie 03-18-1994 Verified version 1.1 */
/* M.Q. Qian 04-17-1996 updated to version 1.2 */
/* */
/*************************************************************************/
#define NU_SOURCE_FILE
#include "nucleus.h" /* System definitions */
/* Define external inner-component global data references. */
extern const CHAR RLD_Release_String[];
/*************************************************************************/
/* */
/* FUNCTION */
/* */
/* RLC_Release_Information */
/* */
/* DESCRIPTION */
/* */
/* This function returns a pointer to the release information */
/* string. The information string identifies the current version */
/* of Nucleus PLUS. */
/* */
/* AUTHOR */
/* */
/* William E. Lamie, Accelerated Technology, Inc. */
/* */
/* CALLED BY */
/* */
/* Application */
/* */
/* CALLS */
/* */
/* None */
/* */
/* INPUTS */
/* */
/* None */
/* */
/* OUTPUTS */
/* */
/* ptr Pointer to information string */
/* */
/* HISTORY */
/* */
/* NAME DATE REMARKS */
/* */
/* W. Lamie 03-01-1993 Created initial version 1.0 */
/* D. Lamie 04-19-1993 Verified version 1.0 */
/* W. Lamie 03-01-1994 Replaced void with VOID, */
/* added pointer variable, */
/* resulting in version 1.1 */
/* R. Pfaff - */
/* D. Lamie 03-18-1994 Verified version 1.1 */
/* */
/*************************************************************************/
CHAR *RLC_Release_Information(VOID)
{
CHAR *ptr;
/* Setup pointer to release string. */
ptr = (CHAR *) &RLD_Release_String[0];
/* Return a pointer to the release information string. */
return(ptr);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -