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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) Yuri Dario & 2000 MySQL AB
  2.    All the above parties has a full, independent copyright to
  3.    the following code, including the right to use the code in
  4.    any manner without any demands from the other parties.
  5.    This library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public
  7.    License as published by the Free Software Foundation; either
  8.    version 2 of the License, or (at your option) any later version.
  9.    This library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Win32 directory search emulation */
  18. #ifndef __MY_OS2DIRSRCH2_H__
  19. #define __MY_OS2DIRSRCH2_H__
  20. #ifdef __cplusplus_00
  21. extern "C" {
  22. #endif
  23. struct _finddata_t
  24. {
  25.   unsigned attrib;
  26. #ifdef NOT_USED
  27.   unsigned long time_create; /* -1 for FAT file systems */
  28.   unsigned long time_access; /* -1 for FAT file systems */
  29.   unsigned long time_write;
  30. #endif
  31.   unsigned long size;
  32.   char name[260];
  33. #ifdef NOT_USED
  34.   uint16 wr_date;
  35.   uint16 wr_time;
  36. #endif
  37. };
  38. struct dirent
  39. {
  40. #ifdef NOT_USED
  41.   unsigned attrib;
  42.   unsigned long time_create; /* -1 for FAT file systems */
  43.   unsigned long time_access; /* -1 for FAT file systems */
  44.   unsigned long time_write;
  45.   unsigned long size;
  46. #endif
  47.   char d_name[260];
  48. #ifdef NOT_USED
  49.   uint16 wr_date;
  50.   uint16 wr_time;
  51. #endif
  52. };
  53. struct DIR
  54. {
  55.    HDIR  hdir;
  56.    FILEFINDBUF3   buf3;
  57.    struct dirent  ent;
  58. };
  59. DIR *opendir ( char *);
  60. struct dirent *readdir (DIR *);
  61. int closedir (DIR *);
  62. #ifdef NOT_USED
  63. #define _A_NORMAL FILE_NORMAL
  64. #define _A_SUBDIR FILE_DIRECTORY
  65. #define _A_RDONLY FILE_READONLY
  66. long _findfirst( char*, struct _finddata_t*);
  67. long _findnext( long, struct _finddata_t*);
  68. void _findclose( long);
  69. #endif
  70. #ifdef __cplusplus_00
  71. }
  72. #endif
  73. #endif /* __MY_OS2DIRSRCH2_H__ */