5799fb2018
* Use new ConvertUtf8ToWChar, ConvertUtf8NToWChar, ConvertUtf8ToWCharAlloc and ConvertUtf8NToWCharAlloc * Use new ConvertWCharToUtf8, ConvertWCharNToUtf8, ConvertWCharToUtf8Alloc and ConvertWCharNToUtf8Alloc * Use new Stream UTF16 to/from UTF8 read/write functions * Use new settings UTF16 to/from UTF8 read/write functions
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
|
|
#include <stdio.h>
|
|
#include <winpr/crt.h>
|
|
#include <winpr/path.h>
|
|
#include <winpr/tchar.h>
|
|
#include <winpr/winpr.h>
|
|
|
|
int TestPathShell(int argc, char* argv[])
|
|
{
|
|
const int paths[] = { KNOWN_PATH_HOME, KNOWN_PATH_TEMP,
|
|
KNOWN_PATH_XDG_DATA_HOME, KNOWN_PATH_XDG_CONFIG_HOME,
|
|
KNOWN_PATH_XDG_CACHE_HOME, KNOWN_PATH_XDG_RUNTIME_DIR,
|
|
KNOWN_PATH_XDG_CONFIG_HOME };
|
|
const char* names[] = { "KNOWN_PATH_HOME", "KNOWN_PATH_TEMP",
|
|
"KNOWN_PATH_XDG_DATA_HOME", "KNOWN_PATH_XDG_CONFIG_HOME",
|
|
"KNOWN_PATH_XDG_CACHE_HOME", "KNOWN_PATH_XDG_RUNTIME_DIR",
|
|
"KNOWN_PATH_XDG_CONFIG_HOME" };
|
|
int rc = 0;
|
|
size_t x;
|
|
|
|
WINPR_UNUSED(argc);
|
|
WINPR_UNUSED(argv);
|
|
|
|
for (x = 0; x < sizeof(paths) / sizeof(paths[0]); x++)
|
|
{
|
|
const int id = paths[x];
|
|
const char* name = names[x];
|
|
{
|
|
char* path = GetKnownPath(id);
|
|
|
|
if (!path)
|
|
{
|
|
fprintf(stderr, "GetKnownPath(%d) failed\n", id);
|
|
rc = -1;
|
|
}
|
|
else
|
|
{
|
|
printf("%s Path: %s\n", name, path);
|
|
}
|
|
free(path);
|
|
}
|
|
{
|
|
char* path = GetKnownSubPath(id, "freerdp");
|
|
|
|
if (!path)
|
|
{
|
|
fprintf(stderr, "GetKnownSubPath(%d) failed\n", id);
|
|
rc = -1;
|
|
}
|
|
else
|
|
{
|
|
printf("%s SubPath: %s\n", name, path);
|
|
}
|
|
free(path);
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|