memdev.h

来自「IXP425的BSP代码」· C头文件 代码 · 共 48 行

H
48
字号
/* memDev.h - generic non-volatile RAM header *//* Copyright 1984-1992 Wind River Systems, Inc. *//*modification history--------------------01d,22sep92,rrr  added support for c++01c,07jul92,ccc  change of name to memDev.h.01b,29jun92,caf  changed genericNvram.h to genericNvRam.h.01a,26jun92,caf  created.*//*DESCRIPTIONThis file contains header information for generic non-volatile RAM routines.*/#ifndef __INCmemDevh#define __INCmemDevh#ifdef __cplusplusextern "C" {#endif/* function declarations */#ifndef	_ASMLANGUAGE#if defined(__STDC__) || defined(__cplusplus)IMPORT	STATUS	sysNvRamGet (char *string, int strLen, int offset);IMPORT	STATUS	sysNvRamSet (char *string, int strLen, int offset);#else	/* __STDC__ */IMPORT	STATUS	sysNvRamGet ();IMPORT	STATUS	sysNvRamSet ();#endif	/* __STDC__ */#endif	/* _ASMLANGUAGE */#ifdef __cplusplus}#endif#endif /* __INCmemDevh */

⌨️ 快捷键说明

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