aboutsummaryrefslogtreecommitdiff
path: root/Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h
diff options
context:
space:
mode:
authorferbas <ferbas@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2010-01-13 09:41:29 +0000
committerferbas <ferbas@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2010-01-13 09:41:29 +0000
commit43d65dc03325bcce8561423b9607f7e114355f7d (patch)
tree7bef4e532a43f4e98ee16b012dca7499ab547e5b /Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h
parentf1288ff2082a3330b62b60ee80521c37576ff9cc (diff)
downloadpdf-as-3-43d65dc03325bcce8561423b9607f7e114355f7d.tar.gz
pdf-as-3-43d65dc03325bcce8561423b9607f7e114355f7d.tar.bz2
pdf-as-3-43d65dc03325bcce8561423b9607f7e114355f7d.zip
initial import
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@545 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h')
-rw-r--r--Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h b/Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h
new file mode 100644
index 0000000..3fd6ad7
--- /dev/null
+++ b/Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h
@@ -0,0 +1,71 @@
+/***********************************************************************/
+/* */
+/* Copyright 1990-1998 Adobe Systems Incorporated. */
+/* All Rights Reserved. */
+/* */
+/* Patents Pending */
+/* */
+/* NOTICE: All information contained herein is the property of Adobe */
+/* Systems Incorporated. Many of the intellectual and technical */
+/* concepts contained herein are proprietary to Adobe, are protected */
+/* as trade secrets, and are made available only to Adobe licensees */
+/* for their internal use. Any reproduction or dissemination of this */
+/* software is strictly forbidden unless prior written permission is */
+/* obtained from Adobe. */
+/* */
+/* PostScript and Display PostScript are trademarks of Adobe Systems */
+/* Incorporated or its subsidiaries and may be registered in certain */
+/* jurisdictions. */
+/* */
+/***********************************************************************/
+
+/*
+ * Name: SimpleUnicode.h
+ * Purpose: SweetPea interfaces for SimpleUnicode suites.
+ * Author: Jon Reid
+ * Created: December 7, 1998
+ */
+
+#ifndef __SimpleUnicode__
+#define __SimpleUnicode__
+
+
+#ifndef __UnicodeAPI__
+#include "UnicodeAPI.h"
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/*
+ Ordinarily when writing a Unicode conversion suite, you should define
+ the encoding(s) it recognizes, but the SimpleUnicode functions ignore
+ the encoding argument. The Mac version assumes you want the script
+ corresponding to the application font; the Win version assumes you
+ want ANSI 1252 (Windows Latin-1).
+*/
+
+
+/*
+ * SimpleUnicode Suite
+ */
+
+#define kSimpleUnicodeSuite "SimpleUnicode Suite"
+#define kSimpleUnicodeSuiteVersion 1
+
+typedef struct SimpleUnicodeSuite
+{
+ ToUnicodeSizeProc ToUnicodeSize;
+ ConvertToUnicodeProc ConvertToUnicode;
+ FromUnicodeSizeProc FromUnicodeSize;
+ ConvertFromUnicodeProc ConvertFromUnicode;
+} SimpleUnicodeSuite;
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __SimpleUnicode__ */