1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // stdafx.h : 标准系统包含文件的包含文件,
- // 或是经常使用但不常更改的
- // 特定于项目的包含文件
- //
- #pragma once
- #include "targetver.h"
- #include <stdio.h>
- #include <tchar.h>
- #include <Windows.h>
- #include "cJSON.h"
- #include<atltime.h>
- #include <string>
- #include <vector>
- using namespace std;
- #ifdef _UNICODE
- typedef wstring TString;
- #else
- typedef string TString;
- #endif
- #include <Shlwapi.h>
- #pragma comment(lib,"Shlwapi.lib")
- typedef struct ITEM{
- TString strName;
- TString strCTime;
- TString strWTime;
- TString strATime;
- }Item, *pItem;
- typedef struct FOLDER{
- TString strName;
- TString strFolder;
- vector<Item> items;
- }Folder, *pFolder;
- typedef struct CONFIG{
- BOOL enable;
- vector<Folder> folders;
- }Config, *pConfig;
- // TODO: 在此处引用程序需要的其他头文件
|