harfbuzz/src/hb-wasm-api.h

112 lines
2.7 KiB
C
Raw Normal View History

2023-02-23 16:32:14 +01:00
/*
* 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 <stdint.h>
2023-02-23 17:03:06 +01:00
#ifndef HB_WASM_BEGIN_DECLS
2023-02-23 16:32:14 +01:00
# ifdef __cplusplus
2023-02-23 17:03:06 +01:00
# define HB_WASM_BEGIN_DECLS extern "C" {
# define HB_WASM_END_DECLS }
2023-02-23 16:32:14 +01:00
# else /* !__cplusplus */
2023-02-23 17:03:06 +01:00
# define HB_WASM_BEGIN_DECLS
# define HB_WASM_END_DECLS
2023-02-23 16:32:14 +01:00
# endif /* !__cplusplus */
#endif
2023-02-23 17:03:06 +01:00
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)
2023-02-23 17:03:06 +01:00
#endif
2023-02-23 17:49:46 +01:00
#ifndef HB_WASM_INTERFACE
#define HB_WASM_INTERFACE(ret_t, name) ret_t name
2023-02-23 17:49:46 +01:00
#endif
2023-02-23 17:18:25 +01:00
#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
2023-02-23 17:03:06 +01:00
2023-02-23 16:32:14 +01:00
#ifndef bool_t
#define bool_t uint32_t
#endif
2023-02-23 18:30:35 +01:00
#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)))
2023-02-23 18:30:35 +01:00
typedef ref_t face_t;
typedef ref_t font_t;
typedef ref_t buffer_t;
2023-02-23 16:32:14 +01:00
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);
2023-02-23 16:32:14 +01:00
/* font */
HB_WASM_API (face_t, font_get_face) (HB_WASM_EXEC_ENV
font_t fontref);
2023-02-23 16:32:14 +01:00
/* shape interface */
HB_WASM_INTERFACE (bool_t, shape) (HB_WASM_EXEC_ENV
font_t fontref,
buffer_t bufferref);
2023-02-23 16:32:14 +01:00
2023-02-23 17:03:06 +01:00
HB_WASM_END_DECLS
2023-02-23 16:32:14 +01:00
#endif /* HB_WASM_API_H */