Skip to content

Commit fb6c018

Browse files
committed
FE6670: Addition of analytical fields in sdk
1 parent 1951600 commit fb6c018

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

BaseClient/util.h

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,18 @@ extern "C" {
1515

1616
/* Please do not modify these values */
1717
#if defined(_WIN64)
18-
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Win64";
18+
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Win64";
1919
#elif defined(_WIN32)
20-
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Win32";
20+
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Win32";
2121
#else
2222
#if defined(__linux)
23-
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Linux";
23+
#if defined(__LP64__) || defined(_LP64)
24+
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Linux x86_64";
25+
#else
26+
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Linux x86_32";
27+
#endif
2428
#else
25-
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Unknown";
29+
static const wchar_t CLIENT_ENVIRONMENT_VALUE[] = L"Unknown";
2630
#endif
2731
#endif
2832

0 commit comments

Comments
 (0)