Update by Maciej

git-svn-id: svn://svn.cc65.org/cc65/trunk@244 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-07-31 21:49:20 +00:00
parent b01c0adf49
commit 150db59a80

View File

@@ -282,7 +282,7 @@ This function outputs single character using current style and font to screen.
<sect3>PutString <sect3>PutString
<p> <p>
<tt/void PutString (char y, int x, char *myString)/ <tt/void PutString (char *myString, char y, int x)/
<p> <p>
Same as <tt/PutChar/ except the fact that you can output whole <tt/NULL/-terminated string. Same as <tt/PutChar/ except the fact that you can output whole <tt/NULL/-terminated string.
See <tt/ggraph.h/ for list of tokens that you can also place in the string - like <tt/CBOLDON/ or See <tt/ggraph.h/ for list of tokens that you can also place in the string - like <tt/CBOLDON/ or
@@ -816,17 +816,19 @@ other registers set as described in <tt/GetNxtDirEntry/.
<p> <p>
This function scans directory and fills a table at <tt/buffer/ with <tt/char &lsqb;17&rsqb;/ entries. This function scans directory and fills a table at <tt/buffer/ with <tt/char &lsqb;17&rsqb;/ entries.
<tt/fType/ is GEOS type of searched files and <tt/classTxt/ is a string for Class field in file <tt/fType/ is GEOS type of searched files and <tt/classTxt/ is a string for Class field in file
header. Class will match if given will be shorter than that found in file's header block. This header. Class will match if given will be equal or shorter than that found in file's header block.
way if you want just to find all files with given GEOS type you must pass empty string as If you want just to find all files with given GEOS type you should pass empty string or <tt/NULL/ as
<tt/classTxt/. <tt/fMaxNum/ is the maximal number of found files, thus the <tt/buffer/ must <tt/classTxt/. Be warned that for searching NON_GEOS files must pass <tt/NULL/ as <tt/classTxt/.
provide area of size equal to <tt/17 * fMaxNum/. This function returns errorcode. The number of <tt/fMaxNum/ is the maximal number of found files, thus the <tt/buffer/ must
actually found files can be restored from <tt/r7H/. provide area of size equal to <tt/17 * fMaxNum/.
This function returns the number of found files, ranging from 0 to number passed as fMaxNum.
Return value from kernal FindFTypes can be restored from <tt/r7H/.
<sect3>DeleteFile <sect3>DeleteFile
<p> <p>
<tt/char DeleteFile (char *fName)/ <tt/char DeleteFile (char *fName)/
<p> <p>
This function delets a file by its name. It works for SEQ and VLIR files. This function deletes a file by its name. It works for SEQ and VLIR files.
<sect3>RenameFile <sect3>RenameFile
<p> <p>