1/* Pango
2 * modules.c:
3 *
4 * Copyright (C) 1999 Red Hat Software
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include "config.h"
23
24#include "pango-modules.h"
25
26/**
27 * pango_find_map: (skip)
28 * @language: the language tag for which to find the map
29 * @engine_type_id: the engine type for the map to find
30 * @render_type_id: the render type for the map to find
31 *
32 * Do not use. Does not do anything.
33 *
34 * Return value: (transfer none) (nullable): %NULL.
35 *
36 * Deprecated: 1.38
37 **/
38PangoMap *
39pango_find_map (PangoLanguage *language G_GNUC_UNUSED,
40 guint engine_type_id G_GNUC_UNUSED,
41 guint render_type_id G_GNUC_UNUSED)
42{
43 return NULL;
44}
45
46/**
47 * pango_map_get_engine: (skip)
48 * @map: a `PangoMap`
49 * @script: a `PangoScript`
50 *
51 * Do not use. Does not do anything.
52 *
53 * Return value: (transfer none) (nullable): %NULL.
54 *
55 * Deprecated: 1.38
56 **/
57PangoEngine *
58pango_map_get_engine (PangoMap *map G_GNUC_UNUSED,
59 PangoScript script G_GNUC_UNUSED)
60{
61 return NULL;
62}
63
64/**
65 * pango_map_get_engines: (skip)
66 * @map: a `PangoMap`
67 * @script: a `PangoScript`
68 * @exact_engines: (nullable): location to store list of engines that exactly
69 * handle this script.
70 * @fallback_engines: (nullable): location to store list of engines that
71 * approximately handle this script.
72 *
73 * Do not use. Does not do anything.
74 *
75 * Since: 1.4
76 * Deprecated: 1.38
77 **/
78void
79pango_map_get_engines (PangoMap *map G_GNUC_UNUSED,
80 PangoScript script G_GNUC_UNUSED,
81 GSList **exact_engines,
82 GSList **fallback_engines)
83{
84 if (exact_engines)
85 *exact_engines = NULL;
86 if (fallback_engines)
87 *fallback_engines = NULL;
88}
89
90/**
91 * pango_module_register: (skip)
92 * @module: a `PangoIncludedModule`
93 *
94 * Do not use. Does not do anything.
95 *
96 * Deprecated: 1.38
97 **/
98void
99pango_module_register (PangoIncludedModule *module G_GNUC_UNUSED)
100{
101}
102

source code of gtk/subprojects/pango/pango/modules.c