dll 인터페이스에서 stl대체하는법

skazkchdrj42의 이미지

#pragma once
#include "EnginePath.h"
 
class EngineFile;
class EngineDirectory : public EnginePath
{
public:
	void GoParent();
	void GoChild(std::string ChildPath);
 
	std::vector<EngineFile> GetAllFile();
	std::vector<EngineFile> GetAllFile(std::string _Ext);
};

이런 클래스를 인터페이스로 감싸서 노출하고싶은데
std::vector같은 자료를 리턴하는 함수를
어떻게 c스타일로 대체하나요??