/***************************************************************************1* _ _ ____ _2* Project ___| | | | _ \| |3* / __| | | | |_) | |4* | (__| |_| | _ <| |___5* \___|\___/|_| \_\_____|6*7* Copyright (C) Daniel Stenberg, <[email protected]>, et al.8*9* This software is licensed as described in the file COPYING, which10* you should have received as part of this distribution. The terms11* are also available at https://curl.se/docs/copyright.html.12*13* You may opt to use, copy, modify, merge, publish, distribute and/or sell14* copies of the Software, and permit persons to whom the Software is15* furnished to do so, under the terms of the COPYING file.16*17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY18* KIND, either express or implied.19*20* SPDX-License-Identifier: curl21*22*23***************************************************************************/2425/* OS/400 additional definitions. */2627#ifndef __OS400_SYS_28#define __OS400_SYS_293031/* Per-thread item identifiers. */3233typedef enum {34LK_GSK_ERROR,35LK_LDAP_ERROR,36LK_CURL_VERSION,37LK_VERSION_INFO,38LK_VERSION_INFO_DATA,39LK_EASY_STRERROR,40LK_SHARE_STRERROR,41LK_MULTI_STRERROR,42LK_URL_STRERROR,43LK_ZLIB_VERSION,44LK_ZLIB_MSG,45LK_LAST46} localkey_t;474849extern char * (* Curl_thread_buffer)(localkey_t key, long size);505152/* Maximum string expansion factor due to character code conversion. */5354#define MAX_CONV_EXPANSION 4 /* Can deal with UTF-8. */5556#endif575859