13 lines
172 B
C++
13 lines
172 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
struct FileInfo
|
|
{
|
|
std::string name;
|
|
int type;
|
|
int size;
|
|
};
|
|
|
|
std::vector<FileInfo> ListDir(const std::string& dirName);
|