errors.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #include "mysys_priv.h"
  4. #include "mysys_err.h"
  5. #ifndef SHARED_LIBRARY
  6. char * NEAR globerrs[GLOBERRS]=
  7. {
  8.   "File '%s' not found (Errcode: %d)",
  9.   "Can't create/write to file '%s' (Errcode: %d)",
  10.   "Error reading file '%s' (Errcode: %d)",
  11.   "Error writing file '%s' (Errcode: %d)",
  12.   "Error on close of '%s' (Errcode: %d)",
  13.   "Out of memory (Needed %u bytes)",
  14.   "Error on delete of '%s' (Errcode: %d)",
  15.   "Error on rename of '%s' to '%s' (Errcode: %d)",
  16.   "",
  17.   "Unexpected eof found when reading file '%s' (Errcode: %d)",
  18.   "Can't lock file (Errcode: %d)",
  19.   "Can't unlock file (Errcode: %d)",
  20.   "Can't read dir of '%s' (Errcode: %d)",
  21.   "Can't get stat of '%s' (Errcode: %d)",
  22.   "Can't change size of file (Errcode: %d)",
  23.   "Can't open stream from handle (Errcode: %d)",
  24.   "Can't get working dirctory (Errcode: %d)",
  25.   "Can't change dir to '%s' (Errcode: %d)",
  26.   "Warning: '%s' had %d links",
  27.   "%d files and %d streams is left openn",
  28.   "Disk is full writing '%s'. Waiting for someone to free space...",
  29.   "Can't create directory '%s' (Errcode: %d)",
  30. };
  31. void init_glob_errs(void)
  32. {
  33.   errmsg[GLOB] = & globerrs[0];
  34. } /* init_glob_errs */
  35. #else
  36. void init_glob_errs()
  37. {
  38.   errmsg[GLOB] = & globerrs[0];
  39.   EE(EE_FILENOTFOUND) = "File '%s' not found (Errcode: %d)";
  40.   EE(EE_CANTCREATEFILE) = "Can't create/write to file '%s' (Errcode: %d)";
  41.   EE(EE_READ) = "Error reading file '%s' (Errcode: %d)";
  42.   EE(EE_WRITE) = "Error writing file '%s' (Errcode: %d)";
  43.   EE(EE_BADCLOSE) = "Error on close of '%'s (Errcode: %d)";
  44.   EE(EE_OUTOFMEMORY) = "Out of memory (Needed %u bytes)";
  45.   EE(EE_DELETE) = "Error on delete of '%s' (Errcode: %d)";
  46.   EE(EE_LINK) = "Error on rename of '%s' to '%s' (Errcode: %d)";
  47.   EE(EE_EOFERR) = "Unexpected eof found when reading file '%s' (Errcode: %d)";
  48.   EE(EE_CANTLOCK) = "Can't lock file (Errcode: %d)";
  49.   EE(EE_CANTUNLOCK) = "Can't unlock file (Errcode: %d)";
  50.   EE(EE_DIR) = "Can't read dir of '%s' (Errcode: %d)";
  51.   EE(EE_STAT) = "Can't get stat of '%s' (Errcode: %d)";
  52.   EE(EE_CANT_CHSIZE) = "Can't change size of file (Errcode: %d)";
  53.   EE(EE_CANT_OPEN_STREAM)= "Can't open stream from handle (Errcode: %d)";
  54.   EE(EE_GETWD) = "Can't get working dirctory (Errcode: %d)";
  55.   EE(EE_SETWD) = "Can't change dir to '%s' (Errcode: %d)";
  56.   EE(EE_LINK_WARNING) = "Warning: '%s' had %d links";
  57.   EE(EE_OPEN_WARNING) = "%d files and %d streams is left openn";
  58.   EE(EE_DISK_FULL) = "Disk is full writing '%s'. Waiting for someone to free space...";
  59.   EE(EE_CANT_MKDIR) ="Can't create directory '%s' (Errcode: %d)";
  60. }
  61. #endif