help_start.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Divert all help information on NetWare to logger screen. */
  2. #ifdef __NETWARE__
  3. #define printf    consoleprintf
  4. #define puts(s)   consoleprintf("%sn",s)
  5. #define fputs(s,f)   puts(s)
  6. #define fputc(s,f)   consoleprintf("%c", s)
  7. #define putchar(s)   consoleprintf("%c", s)
  8. #endif