diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-03-04 18:21:38 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-03-04 18:21:38 +0000 |
commit | d84b8d038431da3f7ac6a941c65ace556d4a910f (patch) | |
tree | 3be42121639f3f5480887d34799a92770cfce28e /lib/libFS/doc | |
parent | 9d8293cba3326d9a3dba386ba52ef6210f50fedc (diff) |
Update to libFS 1.0.4
Diffstat (limited to 'lib/libFS/doc')
-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. |