summaryrefslogtreecommitdiff
path: root/open-vm-tools/lib/include/unicodeTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'open-vm-tools/lib/include/unicodeTypes.h')
-rw-r--r--open-vm-tools/lib/include/unicodeTypes.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/open-vm-tools/lib/include/unicodeTypes.h b/open-vm-tools/lib/include/unicodeTypes.h
index b6b52cda..ca2b6906 100644
--- a/open-vm-tools/lib/include/unicodeTypes.h
+++ b/open-vm-tools/lib/include/unicodeTypes.h
@@ -39,31 +39,6 @@ extern "C" {
#include "vm_basic_types.h"
#include "vm_assert.h"
-#if defined(SUPPORT_UNICODE_OPAQUE)
-
-/*
- * To assist with finding code that hasn't been internationalized, we
- * support building with an opaque Unicode type. This catches users
- * passing a char * of unknown encoding to Unicode functions, and
- * assigning a Unicode to a char *.
- */
-
-typedef struct UnicodeImpl UnicodeImpl;
-typedef UnicodeImpl * Unicode;
-typedef const UnicodeImpl * ConstUnicode;
-
-#else
-
-/*
- * As a transitionary development tactic to prevent code churn while the
- * Unicode libraries are being developed, we'll start with a simple
- * implementation of Unicode as UTF-8 char *.
- */
-typedef char * Unicode;
-typedef const char * ConstUnicode;
-
-#endif
-
typedef ssize_t UnicodeIndex;
/*