Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-blob.h

Issue 6052008: harfbuzz: check in harfbuzz-ng, add gyp define to use it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/harfbuzz-ng/src/hb.h ('k') | third_party/harfbuzz-ng/src/hb-blob.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2009 Red Hat, Inc.
3 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Red Hat Author(s): Behdad Esfahbod
25 */
26
27 #ifndef HB_BLOB_H
28 #define HB_BLOB_H
29
30 #include "hb-common.h"
31
32 HB_BEGIN_DECLS
33
34
35 typedef enum {
36 HB_MEMORY_MODE_DUPLICATE,
37 HB_MEMORY_MODE_READONLY,
38 HB_MEMORY_MODE_WRITABLE,
39 HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE
40 } hb_memory_mode_t;
41
42 typedef struct _hb_blob_t hb_blob_t;
43
44 hb_blob_t *
45 hb_blob_create (const char *data,
46 unsigned int length,
47 hb_memory_mode_t mode,
48 hb_destroy_func_t destroy,
49 void *user_data);
50
51 hb_blob_t *
52 hb_blob_create_sub_blob (hb_blob_t *parent,
53 unsigned int offset,
54 unsigned int length);
55
56 hb_blob_t *
57 hb_blob_create_empty (void);
58
59 hb_blob_t *
60 hb_blob_reference (hb_blob_t *blob);
61
62 unsigned int
63 hb_blob_get_reference_count (hb_blob_t *blob);
64
65 void
66 hb_blob_destroy (hb_blob_t *blob);
67
68 unsigned int
69 hb_blob_get_length (hb_blob_t *blob);
70
71 const char *
72 hb_blob_lock (hb_blob_t *blob);
73
74 void
75 hb_blob_unlock (hb_blob_t *blob);
76
77 hb_bool_t
78 hb_blob_is_writable (hb_blob_t *blob);
79
80 hb_bool_t
81 hb_blob_try_writable_inplace (hb_blob_t *blob);
82
83 hb_bool_t
84 hb_blob_try_writable (hb_blob_t *blob);
85
86
87 HB_END_DECLS
88
89 #endif /* HB_BLOB_H */
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb.h ('k') | third_party/harfbuzz-ng/src/hb-blob.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698