/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Definitions for ByteTranslate filters */ /* Requires scommon.h; strimpl.h if any templates are referenced */ #ifndef sbtx_INCLUDED # define sbtx_INCLUDED #include "scommon.h" /* ByteTranslateEncode/Decode */ typedef struct stream_BT_state_s { stream_state_common; byte table[256]; } stream_BT_state; typedef stream_BT_state stream_BTE_state; typedef stream_BT_state stream_BTD_state; #define private_st_BT_state() /* in sfilter1.c */\ gs_private_st_simple(st_BT_state, stream_BT_state,\ "ByteTranslateEncode/Decode state") extern const stream_template s_BTE_template; extern const stream_template s_BTD_template; #endif /* sbtx_INCLUDED */