aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/bfc/string/PathString.h
blob: 324fc16d9137affe7272b0be2f19fbe36be33749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef NULLSOFT_BFC_PATHSTRING_H
#define NULLSOFT_BFC_PATHSTRING_H


#ifdef _WIN32
#include <windows.h>
class PathString
{
public:
	PathString(const wchar_t *directory, const wchar_t *filename);
private:
	wchar_t path[MAX_PATH];
};

#else

#error port me!

#endif

#endif