Adjustments to recent adding of get/set prefix to tgi function names.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5305 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2011-11-29 21:36:42 +00:00
parent 74eb60df41
commit d1e7773245
2 changed files with 11 additions and 11 deletions

View File

@@ -541,9 +541,9 @@ communication.
<item><ref id="tgi_setpalette" name="tgi_setpalette"> <item><ref id="tgi_setpalette" name="tgi_setpalette">
<item><ref id="tgi_setpixel" name="tgi_setpixel"> <item><ref id="tgi_setpixel" name="tgi_setpixel">
<item><ref id="tgi_setviewpage" name="tgi_setviewpage"> <item><ref id="tgi_setviewpage" name="tgi_setviewpage">
<item><ref id="tgi_textheight" name="tgi_textheight"> <item><ref id="tgi_gettextheight" name="tgi_gettextheight">
<item><ref id="tgi_textstyle" name="tgi_textstyle"> <item><ref id="tgi_settextstyle" name="tgi_settextstyle">
<item><ref id="tgi_textwidth" name="tgi_textwidth"> <item><ref id="tgi_gettextwidth" name="tgi_gettextwidth">
<item><ref id="tgi_uninstall" name="tgi_uninstall"> <item><ref id="tgi_uninstall" name="tgi_uninstall">
<item><ref id="tgi_unload" name="tgi_unload"> <item><ref id="tgi_unload" name="tgi_unload">
</itemize> </itemize>
@@ -5987,14 +5987,14 @@ tgi_setviewpage(0); // Show page 0
</descrip> </descrip>
</quote> </quote>
<sect1>tgi_textheight<label id="tgi_textheight"><p> <sect1>tgi_gettextheight<label id="tgi_gettextheight"><p>
<quote> <quote>
<descrip> <descrip>
<tag/Function/Calculate the height of the text in pixels according to <tag/Function/Calculate the height of the text in pixels according to
the current text style. the current text style.
<tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/ <tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/
<tag/Declaration/<tt/unsigned __fastcall__ tgi_textheight (const char* s);/ <tag/Declaration/<tt/unsigned __fastcall__ tgi_gettextheight (const char* s);/
<tag/Description/Calculate the height of the text in pixels according to <tag/Description/Calculate the height of the text in pixels according to
the current text style. the current text style.
<tag/Limits/<itemize> <tag/Limits/<itemize>
@@ -6007,13 +6007,13 @@ be used in presence of a prototype.
</descrip> </descrip>
</quote> </quote>
<sect1>tgi_textstyle<label id="tgi_textstyle"><p> <sect1>tgi_settextstyle<label id="tgi_settextstyle"><p>
<quote> <quote>
<descrip> <descrip>
<tag/Function/Set the style for text output. <tag/Function/Set the style for text output.
<tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/ <tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/
<tag/Declaration/<tt/void __fastcall__ tgi_textstyle (unsigned char magx, unsigned char magy, unsigned char dir);/ <tag/Declaration/<tt/void __fastcall__ tgi_settextstyle (unsigned char magx, unsigned char magy, unsigned char dir);/
<tag/Description/Set the style for text output. <tag/Description/Set the style for text output.
<tag/Limits/<itemize> <tag/Limits/<itemize>
<item>The function is only available as fastcall function, so it may only <item>The function is only available as fastcall function, so it may only
@@ -6025,13 +6025,13 @@ be used in presence of a prototype.
</descrip> </descrip>
</quote> </quote>
<sect1>tgi_textwidth<label id="tgi_textwidth"><p> <sect1>tgi_gettextwidth<label id="tgi_gettextwidth"><p>
<quote> <quote>
<descrip> <descrip>
<tag/Function/Calculate the width of the text in pixels according to the current text style. <tag/Function/Calculate the width of the text in pixels according to the current text style.
<tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/ <tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/
<tag/Declaration/<tt/unsigned __fastcall__ tgi_textwidth (const char* s);/ <tag/Declaration/<tt/unsigned __fastcall__ tgi_gettextwidth (const char* s);/
<tag/Function/Calculate the width of the text in pixels according to the current text style. <tag/Function/Calculate the width of the text in pixels according to the current text style.
<tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/ <tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/
<tag/Description/Calculate the width of the text in pixels according to the current text style. <tag/Description/Calculate the width of the text in pixels according to the current text style.

View File

@@ -50,11 +50,11 @@
/* Font constants for use with tgi_textstyle */ /* Font constants for use with tgi_settextstyle */
#define TGI_FONT_BITMAP 0 #define TGI_FONT_BITMAP 0
#define TGI_FONT_VECTOR 1 #define TGI_FONT_VECTOR 1
/* Direction constants for use with tgi_textstyle */ /* Direction constants for use with tgi_settextstyle */
#define TGI_TEXT_HORIZONTAL 0 #define TGI_TEXT_HORIZONTAL 0
#define TGI_TEXT_VERTICAL 1 #define TGI_TEXT_VERTICAL 1