|
From: <wsh...@us...> - 2003-08-22 06:27:29
|
Update of /cvsroot/emc/rcslib/src/print
In directory sc8-pr-cvs1:/tmp/cvs-serv12571/src/print
Added Files:
Tag: wps_multiplat_dev_branch
rcs_prnt_no_config.h
Log Message:
.
--- NEW FILE: rcs_prnt_no_config.h ---
#ifndef RCS_PRNT_NO_CONFIG_H
#define RCS_PRNT_NO_CONFIG_H
#include "rcs_defs.hh" /* _Windows, RCS_FAR, EXTERN_C_STD_HEADERS */
#ifdef DEBUG_MEMORY
#include "dbg_mem.h" // DEBUG_MALLOC, DEBUG_FREE
#else
#define DEBUG_MALLOC(x) malloc(x)
#define DEBUG_FREE(x) free(x)
#endif
#ifdef EXTERN_C_STD_HEADERS
extern "C"
{
#endif
#ifdef VXWORKS
#include "vxWorks.h"
#endif
#ifdef USING_VARARGS
#include <varargs.h> /* va_list, va_start(), va_end() */
#else
#include <stdarg.h> /* va_list, va_start(), va_end() */
#endif
#ifndef NO_STDIO
#include <stdio.h> /* __printf()'s */
#endif
#include <string.h> /* strchr(), memmove() */
#include <stdlib.h> /* malloc(), free(), realloc() */
#include <errno.h> // errno()
#ifdef VXWORKS
#include <logLib.h> /* logMsg() */
#endif
#ifdef VXWORKS
#include <taskLib.h> /* taskIdSelf() */
#else
#include <sys/types.h>
#ifdef UNIX_LIKE_PLAT
#include <unistd.h> /* getpid() */
#endif
#endif
#include <ctype.h>
#ifdef EXTERN_C_STD_HEADERS
}
#endif
#ifdef _Windows
#include <windows.h> /* MessageBox() */
#endif
#endif
// ifndef RCS_PRNT_NO_CONFIG_H
|