* evas: Add some const.

SVN revision: 39345
This commit is contained in:
Cedric BAIL 2009-03-03 14:38:24 +00:00
parent 200c92f82a
commit ed6e29a5dc
2 changed files with 8 additions and 8 deletions

View File

@ -17,10 +17,10 @@ EAPI int evas_common_font_max_ascent_get (RGBA_Font *fn);
EAPI int evas_common_font_max_descent_get (RGBA_Font *fn);
EAPI int evas_common_font_get_line_advance (RGBA_Font *fn);
EAPI int evas_common_font_utf8_get_next (unsigned char *buf, int *iindex);
EAPI int evas_common_font_utf8_get_prev (unsigned char *buf, int *iindex);
EAPI int evas_common_font_utf8_get_last (unsigned char *buf, int buflen);
EAPI int evas_common_font_utf8_get_len (unsigned char *buf);
EAPI int evas_common_font_utf8_get_next (const unsigned char *buf, int *iindex);
EAPI int evas_common_font_utf8_get_prev (const unsigned char *buf, int *iindex);
EAPI int evas_common_font_utf8_get_last (const unsigned char *buf, int buflen);
EAPI int evas_common_font_utf8_get_len (const unsigned char *buf);
/* draw */

View File

@ -123,7 +123,7 @@ evas_common_font_get_line_advance(RGBA_Font *fn)
}
EAPI int
evas_common_font_utf8_get_next(unsigned char *buf, int *iindex)
evas_common_font_utf8_get_next(const unsigned char *buf, int *iindex)
{
/* Reads UTF8 bytes from @buf, starting at *@index and returns
* the decoded code point at iindex offset, and advances iindex
@ -183,7 +183,7 @@ evas_common_font_utf8_get_next(unsigned char *buf, int *iindex)
}
EAPI int
evas_common_font_utf8_get_prev(unsigned char *buf, int *iindex)
evas_common_font_utf8_get_prev(const unsigned char *buf, int *iindex)
{
/* Reads UTF8 bytes from @buf, starting at *@index and returns
* the decoded code point at iindex offset, and advances iindex
@ -243,7 +243,7 @@ evas_common_font_utf8_get_prev(unsigned char *buf, int *iindex)
}
EAPI int
evas_common_font_utf8_get_last(unsigned char *buf, int buflen)
evas_common_font_utf8_get_last(const unsigned char *buf, int buflen)
{
/* jumps to the nul byte at the buffer end and decodes backwards and
* returns the offset index byte in the buffer where the last character
@ -273,7 +273,7 @@ evas_common_font_utf8_get_last(unsigned char *buf, int buflen)
}
EAPI int
evas_common_font_utf8_get_len(unsigned char *buf)
evas_common_font_utf8_get_len(const unsigned char *buf)
{
/* returns the number of utf8 characters (not bytes) in the string */
int index = 0, len = 0;