29 lines
542 B
C
29 lines
542 B
C
/* adrSpaceShow.h - address space show library header file */
|
|
|
|
/* Copyright 2000-1004 Wind River Systems, Inc. */
|
|
|
|
/*
|
|
modification history
|
|
--------------------
|
|
01c,31aug04,zl moved private APIs to private header file
|
|
01b,12nov03,yp adding declaration for init routine
|
|
01a,12jun00,map written.
|
|
*/
|
|
|
|
#ifndef __INCadrSpaceShowLibh
|
|
#define __INCadrSpaceShowLibh
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* funtion declarations */
|
|
|
|
extern STATUS adrSpaceShow (UINT level);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __INCadrSpaceShowLibh */
|