mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 20:35:46 -04:00
Initial community commit
This commit is contained in:
18
Src/Wasabi/bfc/file/tmpnamestr.h
Normal file
18
Src/Wasabi/bfc/file/tmpnamestr.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef _TMPNAMESTR_H
|
||||
#define _TMPNAMESTR_H
|
||||
|
||||
#include <bfc/string/StringW.h>
|
||||
|
||||
class TmpNameStrW : public StringW
|
||||
{
|
||||
public:
|
||||
TmpNameStrW()
|
||||
{
|
||||
wchar_t tmp[WA_MAX_PATH]=L"";
|
||||
TMPNAM(tmp);
|
||||
setValue(tmp);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user