list.h

来自「文件夹加密工具(开源代码) 软件作者:dyforc 发现文件夹加密的软件」· C头文件 代码 · 共 13 行

H
13
字号
#ifndef _LIST_H
#define _LIST_H

typedef struct _Node
{
    char dir[MAX_PATH];     // the directory containing such file
    WIN32_FIND_DATA ffd;    // file information
    struct _Node *next;
}Node;
typedef Node * List;

#endif

⌨️ 快捷键说明

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