/* * Copyright © 2023 Behdad Esfahbod * * This is part of HarfBuzz, a text shaping library. * * Permission is hereby granted, without written agreement and without * license or royalty fees, to use, copy, modify, and distribute this * software and its documentation for any purpose, provided that the * above copyright notice and the following two paragraphs appear in * all copies of this software. * * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ #ifndef HB_WASM_API_H #define HB_WASM_API_H /* #include "hb.h" */ #include #ifndef HB_WASM_BEGIN_DECLS # ifdef __cplusplus # define HB_WASM_BEGIN_DECLS extern "C" { # define HB_WASM_END_DECLS } # else /* !__cplusplus */ # define HB_WASM_BEGIN_DECLS # define HB_WASM_END_DECLS # endif /* !__cplusplus */ #endif HB_WASM_BEGIN_DECLS #ifndef HB_WASM_API #define HB_WASM_API(ret_t, name) ret_t name #endif #ifndef HB_WASM_API_COMPOUND /* compound return type */ #define HB_WASM_API_COMPOUND(ret_t, name) HB_WASM_API(ret_t, name) #endif #ifndef HB_WASM_INTERFACE #define HB_WASM_INTERFACE(ret_t, name) ret_t name #endif #ifndef HB_WASM_EXEC_ENV #define HB_WASM_EXEC_ENV #endif #ifndef HB_WASM_EXEC_ENV_COMPOUND #define HB_WASM_EXEC_ENV_COMPOUND HB_WASM_EXEC_ENV #endif #ifndef bool_t #define bool_t uint32_t #endif #ifndef ref_t #define ref_t uint32_t #endif #ifndef ptr_t #define ptr_t(type_t) type_t * #endif typedef uint32_t tag_t; #define TAG(c1,c2,c3,c4) ((tag_t)((((uint32_t)(c1)&0xFF)<<24)|(((uint32_t)(c2)&0xFF)<<16)|(((uint32_t)(c3)&0xFF)<<8)|((uint32_t)(c4)&0xFF))) typedef ref_t face_t; typedef ref_t font_t; typedef ref_t buffer_t; typedef struct { ptr_t(char) data; uint32_t length; } blob_t; /* face */ HB_WASM_API_COMPOUND (blob_t, face_reference_table) (HB_WASM_EXEC_ENV_COMPOUND face_t faceref, tag_t table_tag); /* font */ HB_WASM_API (face_t, font_get_face) (HB_WASM_EXEC_ENV font_t fontref); /* shape interface */ HB_WASM_INTERFACE (bool_t, shape) (HB_WASM_EXEC_ENV font_t fontref, buffer_t bufferref); HB_WASM_END_DECLS #endif /* HB_WASM_API_H */