diff options
Diffstat (limited to 'lib/libFS/doc/FSlib.txt')
-rw-r--r-- | lib/libFS/doc/FSlib.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libFS/doc/FSlib.txt b/lib/libFS/doc/FSlib.txt index 6d1ee2558..5f686f34b 100644 --- a/lib/libFS/doc/FSlib.txt +++ b/lib/libFS/doc/FSlib.txt @@ -6,7 +6,7 @@ Connection Setup FSServer * FSOpenServer( - char *server); + const char *server); Creates a connection to the font server specified in the 'server' string. @@ -42,7 +42,7 @@ Closes the font. char ** FSListFonts( FSServer *svr, - char *pattern, + const char *pattern, int maxNames, int *actualCount); @@ -59,7 +59,7 @@ Frees the list of font names returned by FSListFonts. char ** FSListFontsWithXInfo( FSServer *svr, - char *pattern, + const char *pattern, int maxNames, int *actualCount, fsFontHeader ***info, @@ -221,10 +221,10 @@ FSMaxRequestSize( Returns the largest request size (in 4 byte quantities) that the server can handle. -char * +const char * FSServerName( - char *server); + const char *server); Returns the name that FSlib would use to connect to the server. -Translates a NULL in the value of $FONT_SERVER. +Translates a NULL into the value of $FONT_SERVER. |