mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
9 lines
135 B
C++
9 lines
135 B
C++
#pragma once
|
|
|
|
struct IGpDirectoryCursor
|
|
{
|
|
public:
|
|
virtual bool GetNext(const char *&outFileName) = 0;
|
|
virtual void Destroy() = 0;
|
|
};
|