mirror of
https://github.com/libretro/Play-.git
synced 2025-02-19 02:57:36 +00:00
15 lines
275 B
C++
15 lines
275 B
C++
#ifndef _UTILS_H_
|
|
#define _UTILS_H_
|
|
|
|
#include "Stream.h"
|
|
#include "Str.h"
|
|
#include "win32/Window.h"
|
|
|
|
namespace Utils
|
|
{
|
|
void GetLine(Framework::CStream*, Framework::CStrA*, bool = true);
|
|
const char* GetFilenameFromPath(const char*, char = '\\');
|
|
};
|
|
|
|
#endif
|