annotate src/sdl_pango-1-api-adds.patch @ 5534:372ea4c0afb2

Move of-ocs PKG_XXXX to inst dir and add break patch * src/of-ocs-3-break-fixes.patch, src/of-ocs-4-pkgadd-fixes.patch: new files * dist-files.mk: add ref to files
author John Donoghue <john.donoghue@ieee.org>
date Sun, 13 Sep 2020 08:15:14 -0400
parents 99516e73b368
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 973
diff changeset
1 This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
2 See index.html for further information.
832
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
973
4df75ab7a04d add information about the origin of various patches
Volker Grabsch <vog@notjusthosting.com>
parents: 832
diff changeset
4 This patch has been taken from:
4df75ab7a04d add information about the origin of various patches
Volker Grabsch <vog@notjusthosting.com>
parents: 832
diff changeset
5 http://zarb.org/~gc/t/SDL_Pango-0.1.2-API-adds.patch
4df75ab7a04d add information about the origin of various patches
Volker Grabsch <vog@notjusthosting.com>
parents: 832
diff changeset
6
832
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 --- SDL_Pango-0.1.2.orig/src/SDL_Pango.c 2004-12-10 10:06:33.000000000 +0100
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 +++ SDL_Pango-0.1.2/src/SDL_Pango.c 2006-09-24 22:46:24.000000000 +0200
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 @@ -723,13 +723,8 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 SDL_UnlockSurface(surface);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 }
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 -/*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 - Create a context which contains Pango objects.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 -
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 - @return A pointer to the context as a SDLPango_Context*.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 -*/
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 SDLPango_Context*
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 -SDLPango_CreateContext()
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 +SDLPango_CreateContext_GivenFontDesc(const char* font_desc)
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 {
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 SDLPango_Context *context = g_malloc(sizeof(SDLPango_Context));
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 G_CONST_RETURN char *charset;
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 @@ -743,8 +738,7 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 pango_context_set_language (context->context, pango_language_from_string (charset));
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 pango_context_set_base_dir (context->context, PANGO_DIRECTION_LTR);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 - context->font_desc = pango_font_description_from_string(
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 - MAKE_FONT_NAME (DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE));
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 + context->font_desc = pango_font_description_from_string(font_desc);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 context->layout = pango_layout_new (context->context);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 @@ -762,6 +756,17 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 }
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
36
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 /*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 + Create a context which contains Pango objects.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
39 +
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
40 + @return A pointer to the context as a SDLPango_Context*.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 +*/
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 +SDLPango_Context*
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
43 +SDLPango_CreateContext()
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
44 +{
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
45 + SDLPango_CreateContext_GivenFontDesc(MAKE_FONT_NAME(DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE));
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
46 +}
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
47 +
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
48 +/*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
49 Free a context.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
50
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
51 @param *context [i/o] Context to be free
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
52 @@ -1053,6 +1058,20 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
53 pango_layout_set_font_description (context->layout, context->font_desc);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
54 }
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
55
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
56 +void
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
57 +SDLPango_SetText_GivenAlignment(
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
58 + SDLPango_Context *context,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
59 + const char *text,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
60 + int length,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
61 + SDLPango_Alignment alignment)
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
62 +{
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
63 + pango_layout_set_attributes(context->layout, NULL);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
64 + pango_layout_set_text (context->layout, text, length);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
65 + pango_layout_set_auto_dir (context->layout, TRUE);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
66 + pango_layout_set_alignment (context->layout, alignment);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
67 + pango_layout_set_font_description (context->layout, context->font_desc);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
68 +}
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
69 +
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
70 /*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
71 Set plain text to context.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
72 Text must be utf-8.
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
73 @@ -1067,11 +1086,7 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
74 const char *text,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
75 int length)
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
76 {
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
77 - pango_layout_set_attributes(context->layout, NULL);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
78 - pango_layout_set_text (context->layout, text, length);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
79 - pango_layout_set_auto_dir (context->layout, TRUE);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
80 - pango_layout_set_alignment (context->layout, PANGO_ALIGN_LEFT);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
81 - pango_layout_set_font_description (context->layout, context->font_desc);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
82 + SDLPango_SetText_GivenAlignment(context, text, length, SDLPANGO_ALIGN_LEFT);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
83 }
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
84
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
85 /*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
86 --- SDL_Pango-0.1.2.orig/src/SDL_Pango.h 2004-12-10 10:06:33.000000000 +0100
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
87 +++ SDL_Pango-0.1.2/src/SDL_Pango.h 2006-09-24 22:46:01.000000000 +0200
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
88 @@ -109,12 +109,20 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
89 SDLPANGO_DIRECTION_NEUTRAL /*! Neutral */
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
90 } SDLPango_Direction;
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
91
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
92 -
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
93 +/*!
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
94 + Specifies alignment of text. See Pango reference for detail
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
95 +*/
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
96 +typedef enum {
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
97 + SDLPANGO_ALIGN_LEFT,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
98 + SDLPANGO_ALIGN_CENTER,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
99 + SDLPANGO_ALIGN_RIGHT
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
100 +} SDLPango_Alignment;
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
101
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
102 extern DECLSPEC int SDLCALL SDLPango_Init();
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
103
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
104 extern DECLSPEC int SDLCALL SDLPango_WasInit();
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
105
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
106 +extern DECLSPEC SDLPango_Context* SDLCALL SDLPango_CreateContext_GivenFontDesc(const char* font_desc);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
107 extern DECLSPEC SDLPango_Context* SDLCALL SDLPango_CreateContext();
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
108
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
109 extern DECLSPEC void SDLCALL SDLPango_FreeContext(
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
110 @@ -157,6 +165,12 @@
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
111 const char *markup,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
112 int length);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
113
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
114 +extern DECLSPEC void SDLCALL SDLPango_SetText_GivenAlignment(
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
115 + SDLPango_Context *context,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
116 + const char *text,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
117 + int length,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
118 + SDLPango_Alignment alignment);
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
119 +
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
120 extern DECLSPEC void SDLCALL SDLPango_SetText(
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
121 SDLPango_Context *context,
a4d0859a18dd corrected file name and header of the "api-adds" patch of package sdl_pango
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
122 const char *markup,