From 43d65dc03325bcce8561423b9607f7e114355f7d Mon Sep 17 00:00:00 2001 From: ferbas Date: Wed, 13 Jan 2010 09:41:29 +0000 Subject: initial import git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@545 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c --- .../sources/import/SDK/SimpleUnicode.h | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h (limited to 'Adobe_SigHandler/Adobe.PDF-AS-SigHandler/sources/import/SDK/SimpleUnicode.h') 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__ */ -- cgit v1.2.3