7 lines
165 B
C++
7 lines
165 B
C++
|
#include "PathString.h"
|
||
|
#include <shlwapi.h>
|
||
|
|
||
|
PathString::PathString(const wchar_t *directory, const wchar_t *filename)
|
||
|
{
|
||
|
PathCombineW(path, directory, filename);
|
||
|
}
|