⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listview.i

📁 一个电话本的程序
💻 I
📖 第 1 页 / 共 5 页
字号:
extern int lchmod (__const char *__file, __mode_t __mode) ;extern int fchmod (int __fd, __mode_t __mode) ;extern __mode_t umask (__mode_t __mask) ;# 281 "/usr/include/sys/stat.h" 3extern int mkdir (__const char *__path, __mode_t __mode) ;extern int mknod (__const char *__path, __mode_t __mode, __dev_t __dev)     ;extern int mkfifo (__const char *__path, __mode_t __mode) ;# 319 "/usr/include/sys/stat.h" 3extern int __fxstat (int __ver, int __fildes, struct stat *__stat_buf) ;extern int __xstat (int __ver, __const char *__filename,                    struct stat *__stat_buf) ;extern int __lxstat (int __ver, __const char *__filename,                     struct stat *__stat_buf) ;# 350 "/usr/include/sys/stat.h" 3extern int __xmknod (int __ver, __const char *__path, __mode_t __mode,                     __dev_t *__dev) ;extern __inline__ int stat (__const char *__path,                            struct stat *__statbuf){  return __xstat (3, __path, __statbuf);}extern __inline__ int lstat (__const char *__path,                             struct stat *__statbuf){  return __lxstat (3, __path, __statbuf);}extern __inline__ int fstat (int __fd, struct stat *__statbuf){  return __fxstat (3, __fd, __statbuf);}extern __inline__ int mknod (__const char *__path, __mode_t __mode,                             __dev_t __dev){  return __xmknod (1, __path, __mode, &__dev);}# 408 "/usr/include/sys/stat.h" 3# 17 "listview.c" 2# 1 "/usr/local/include/minigui/common.h" 1 3# 54 "/usr/local/include/minigui/common.h" 3# 1 "/usr/local/include/minigui/config.h" 1 3# 55 "/usr/local/include/minigui/common.h" 2 3# 99 "/usr/local/include/minigui/common.h" 3typedef unsigned char Uint8;typedef signed char Sint8;typedef unsigned short Uint16;typedef signed short Sint16;typedef unsigned int Uint32;typedef signed int Sint32;# 142 "/usr/local/include/minigui/common.h" 3typedef unsigned long long Uint64;typedef signed long long Sint64;# 162 "/usr/local/include/minigui/common.h" 3typedef int MGUI_dummy_uint8[(sizeof(Uint8) == 1) * 2 - 1];typedef int MGUI_dummy_sint8[(sizeof(Sint8) == 1) * 2 - 1];typedef int MGUI_dummy_uint16[(sizeof(Uint16) == 2) * 2 - 1];typedef int MGUI_dummy_sint16[(sizeof(Sint16) == 2) * 2 - 1];typedef int MGUI_dummy_uint32[(sizeof(Uint32) == 4) * 2 - 1];typedef int MGUI_dummy_sint32[(sizeof(Sint32) == 4) * 2 - 1];typedef int MGUI_dummy_uint64[(sizeof(Uint64) == 8) * 2 - 1];typedef int MGUI_dummy_sint64[(sizeof(Sint64) == 8) * 2 - 1];# 235 "/usr/local/include/minigui/common.h" 3typedef int BOOL;# 274 "/usr/local/include/minigui/common.h" 3typedef unsigned int GHANDLE;typedef unsigned int HWND;typedef unsigned int HDC;typedef unsigned int HCURSOR;typedef unsigned int HICON;typedef unsigned int HMENU;typedef unsigned int HACCEL;typedef unsigned int HDLG;typedef unsigned int HHOOK;# 327 "/usr/local/include/minigui/common.h" 3typedef unsigned char BYTE;typedef signed char SBYTE;typedef unsigned short WORD;typedef signed short SWORD;typedef unsigned long DWORD;typedef signed long SDWORD;typedef unsigned int UINT;typedef long LONG;typedef UINT WPARAM;typedef DWORD LPARAM;# 482 "/usr/local/include/minigui/common.h" 3typedef struct _RECT{    int left;    int top;    int right;    int bottom;} RECT;typedef RECT* PRECT;typedef struct _POINT{    int x;    int y;} POINT;typedef POINT* PPOINT;typedef struct _SIZE{    int cx;    int cy;} SIZE;typedef SIZE* PSIZE;typedef struct _RGB{    BYTE r;    BYTE g;    BYTE b;    BYTE a;} RGB;typedef RGB* PRGB;# 592 "/usr/local/include/minigui/common.h" 3typedef Sint8 gal_sint8;typedef Uint8 gal_uint8;typedef Sint16 gal_sint16;typedef Uint16 gal_uint16;typedef Sint32 gal_sint32;typedef Uint32 gal_uint32;typedef signed int gal_sint;typedef unsigned int gal_uint;typedef Uint32 gal_pixel;typedef Uint32 gal_attr;typedef long fixed;typedef struct GAL_Color{    gal_uint8 r;    gal_uint8 g;    gal_uint8 b;    gal_uint8 a;} GAL_Color;typedef struct GAL_Palette{    int ncolors;    GAL_Color* colors;} GAL_Palette;typedef struct GAL_Rect {    Sint32 x, y;    Sint32 w, h;} GAL_Rect;# 1157 "/usr/local/include/minigui/common.h" 3# 1 "/usr/include/dirent.h" 1 3# 28 "/usr/include/dirent.h" 3# 62 "/usr/include/dirent.h" 3# 1 "/usr/include/bits/dirent.h" 1 3# 23 "/usr/include/bits/dirent.h" 3struct dirent  {    __ino_t d_ino;    __off_t d_off;    unsigned short int d_reclen;    unsigned char d_type;    char d_name[256];  };# 63 "/usr/include/dirent.h" 2 3# 98 "/usr/include/dirent.h" 3enum  {    DT_UNKNOWN = 0,    DT_FIFO = 1,    DT_CHR = 2,    DT_DIR = 4,    DT_BLK = 6,    DT_REG = 8,    DT_LNK = 10,    DT_SOCK = 12,    DT_WHT = 14  };# 128 "/usr/include/dirent.h" 3typedef struct __dirstream DIR;extern DIR *opendir (__const char *__name) ;extern int closedir (DIR *__dirp) ;# 146 "/usr/include/dirent.h" 3extern struct dirent *readdir (DIR *__dirp) ;# 163 "/usr/include/dirent.h" 3extern int readdir_r (DIR *__restrict __dirp,                      struct dirent *__restrict __entry,                      struct dirent **__restrict __result) ;# 186 "/usr/include/dirent.h" 3extern void rewinddir (DIR *__dirp) ;extern void seekdir (DIR *__dirp, long int __pos) ;extern long int telldir (DIR *__dirp) ;extern int dirfd (DIR *__dirp) ;# 1 "/usr/include/bits/posix1_lim.h" 1 3# 126 "/usr/include/bits/posix1_lim.h" 3# 1 "/usr/include/bits/local_lim.h" 1 3# 36 "/usr/include/bits/local_lim.h" 3# 1 "/usr/include/linux/limits.h" 1 3# 37 "/usr/include/bits/local_lim.h" 2 3# 127 "/usr/include/bits/posix1_lim.h" 2 3# 210 "/usr/include/dirent.h" 2 3# 220 "/usr/include/dirent.h" 3# 1 "/usr/lib/gcc-lib/i386-redhat-linux/3.2.2/include/stddef.h" 1 3# 221 "/usr/include/dirent.h" 2 3extern int scandir (__const char *__restrict __dir,                    struct dirent ***__restrict __namelist,                    int (*__selector) (__const struct dirent *),                    int (*__cmp) (__const void *, __const void *)) ;# 255 "/usr/include/dirent.h" 3extern int alphasort (__const void *__e1, __const void *__e2)     __attribute__ ((__pure__));# 300 "/usr/include/dirent.h" 3extern __ssize_t getdirentries (int __fd, char *__restrict __buf,                                size_t __nbytes,                                __off_t *__restrict __basep) ;# 323 "/usr/include/dirent.h" 3# 1158 "/usr/local/include/minigui/common.h" 2 3# 20 "listview.c" 2# 1 "/usr/local/include/minigui/minigui.h" 1 3# 43 "/usr/local/include/minigui/minigui.h" 3# 1 "/usr/include/sys/time.h" 1 3# 27 "/usr/include/sys/time.h" 3# 1 "/usr/include/time.h" 1 3# 28 "/usr/include/sys/time.h" 2 3# 1 "/usr/include/bits/time.h" 1 3# 30 "/usr/include/sys/time.h" 2 3# 39 "/usr/include/sys/time.h" 3# 57 "/usr/include/sys/time.h" 3struct timezone  {    int tz_minuteswest;    int tz_dsttime;  };typedef struct timezone *__restrict __timezone_ptr_t;# 73 "/usr/include/sys/time.h" 3extern int gettimeofday (struct timeval *__restrict __tv,                         __timezone_ptr_t __tz) ;extern int settimeofday (__const struct timeval *__tv,                         __const struct timezone *__tz) ;extern int adjtime (__const struct timeval *__delta,                    struct timeval *__olddelta) ;enum __itimer_which  {    ITIMER_REAL = 0,    ITIMER_VIRTUAL = 1,    ITIMER_PROF = 2  };struct itimerval  {    struct timeval it_interval;    struct timeval it_value;  };typedef int __itimer_which_t;extern int getitimer (__itimer_which_t __which,                      struct itimerval *__value) ;extern int setitimer (__itimer_which_t __which,                      __const struct itimerval *__restrict __new,                      struct itimerval *__restrict __old) ;extern int utimes (__const char *__file, __const struct timeval __tvp[2])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -