author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 20 Aug 2010 02:35:01 -0400 | |
changeset 1092 | 12c87d886a75 |
parent 1091 | 0a103bf74f1c |
child 1094 | aa12a958cc47 |
permissions | -rw-r--r-- |
1070
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
1 |
/** |
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
2 |
* \file physfs.h |
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
3 |
* |
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
4 |
* Main header file for PhysicsFS. |
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
5 |
*/ |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
6 |
|
1 | 7 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
8 |
* \mainpage PhysicsFS |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
9 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
10 |
* The latest version of PhysicsFS can be found at: |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
11 |
* http://icculus.org/physfs/ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
12 |
* |
1 | 13 |
* PhysicsFS; a portable, flexible file i/o abstraction. |
14 |
* |
|
15 |
* This API gives you access to a system file system in ways superior to the |
|
16 |
* stdio or system i/o calls. The brief benefits: |
|
17 |
* |
|
18 |
* - It's portable. |
|
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
19 |
* - It's safe. No file access is permitted outside the specified dirs. |
1 | 20 |
* - It's flexible. Archives (.ZIP files) can be used transparently as |
21 |
* directory structures. |
|
22 |
* |
|
23 |
* This system is largely inspired by Quake 3's PK3 files and the related |
|
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
24 |
* fs_* cvars. If you've ever tinkered with these, then this API will be |
1 | 25 |
* familiar to you. |
26 |
* |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
27 |
* With PhysicsFS, you have a single writing directory and multiple |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
28 |
* directories (the "search path") for reading. You can think of this as a |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
29 |
* filesystem within a filesystem. If (on Windows) you were to set the |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
30 |
* writing directory to "C:\MyGame\MyWritingDirectory", then no PHYSFS calls |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
31 |
* could touch anything above this directory, including the "C:\MyGame" and |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
32 |
* "C:\" directories. This prevents an application's internal scripting |
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
33 |
* language from piddling over c:\\config.sys, for example. If you'd rather |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
34 |
* give PHYSFS full access to the system's REAL file system, set the writing |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
35 |
* dir to "C:\", but that's generally A Bad Thing for several reasons. |
1 | 36 |
* |
37 |
* Drive letters are hidden in PhysicsFS once you set up your initial paths. |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
38 |
* The search path creates a single, hierarchical directory structure. |
1 | 39 |
* Not only does this lend itself well to general abstraction with archives, |
40 |
* it also gives better support to operating systems like MacOS and Unix. |
|
41 |
* Generally speaking, you shouldn't ever hardcode a drive letter; not only |
|
42 |
* does this hurt portability to non-Microsoft OSes, but it limits your win32 |
|
43 |
* users to a single drive, too. Use the PhysicsFS abstraction functions and |
|
44 |
* allow user-defined configuration options, too. When opening a file, you |
|
45 |
* specify it like it was on a Unix filesystem: if you want to write to |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
46 |
* "C:\MyGame\MyConfigFiles\game.cfg", then you might set the write dir to |
1 | 47 |
* "C:\MyGame" and then open "MyConfigFiles/game.cfg". This gives an |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
48 |
* abstraction across all platforms. Specifying a file in this way is termed |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
49 |
* "platform-independent notation" in this documentation. Specifying a |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
50 |
* a filename in a form such as "C:\mydir\myfile" or |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
51 |
* "MacOS hard drive:My Directory:My File" is termed "platform-dependent |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
52 |
* notation". The only time you use platform-dependent notation is when |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
53 |
* setting up your write directory and search path; after that, all file |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
54 |
* access into those directories are done with platform-independent notation. |
1 | 55 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
56 |
* All files opened for writing are opened in relation to the write directory, |
1 | 57 |
* which is the root of the writable filesystem. When opening a file for |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
58 |
* reading, PhysicsFS goes through the search path. This is NOT the |
1 | 59 |
* same thing as the PATH environment variable. An application using |
60 |
* PhysicsFS specifies directories to be searched which may be actual |
|
61 |
* directories, or archive files that contain files and subdirectories of |
|
62 |
* their own. See the end of these docs for currently supported archive |
|
63 |
* formats. |
|
64 |
* |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
65 |
* Once the search path is defined, you may open files for reading. If you've |
1 | 66 |
* got the following search path defined (to use a win32 example again): |
67 |
* |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
68 |
* - C:\\mygame |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
69 |
* - C:\\mygame\\myuserfiles |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
70 |
* - D:\\mygamescdromdatafiles |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
71 |
* - C:\\mygame\\installeddatafiles.zip |
1 | 72 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
73 |
* Then a call to PHYSFS_openRead("textfiles/myfile.txt") (note the directory |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
74 |
* separator, lack of drive letter, and lack of dir separator at the start of |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
75 |
* the string; this is platform-independent notation) will check for |
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
76 |
* C:\\mygame\\textfiles\\myfile.txt, then |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
77 |
* C:\\mygame\\myuserfiles\\textfiles\\myfile.txt, then |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
78 |
* D:\\mygamescdromdatafiles\\textfiles\\myfile.txt, then, finally, for |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
79 |
* textfiles\\myfile.txt inside of C:\\mygame\\installeddatafiles.zip. |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
80 |
* Remember that most archive types and platform filesystems store their |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
81 |
* filenames in a case-sensitive manner, so you should be careful to specify |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
82 |
* it correctly. |
1 | 83 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
84 |
* Files opened through PhysicsFS may NOT contain "." or ".." or ":" as dir |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
85 |
* elements. Not only are these meaningless on MacOS Classic and/or Unix, |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
86 |
* they are a security hole. Also, symbolic links (which can be found in |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
87 |
* some archive types and directly in the filesystem on Unix platforms) are |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
88 |
* NOT followed until you call PHYSFS_permitSymbolicLinks(). That's left to |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
89 |
* your own discretion, as following a symlink can allow for access outside |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
90 |
* the write dir and search paths. For portability, there is no mechanism for |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
91 |
* creating new symlinks in PhysicsFS. |
1 | 92 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
93 |
* The write dir is not included in the search path unless you specifically |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
94 |
* add it. While you CAN change the write dir as many times as you like, |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
95 |
* you should probably set it once and stick to it. Remember that your |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
96 |
* program will not have permission to write in every directory on Unix and |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
97 |
* NT systems. |
1 | 98 |
* |
99 |
* All files are opened in binary mode; there is no endline conversion for |
|
100 |
* textfiles. Other than that, PhysicsFS has some convenience functions for |
|
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
101 |
* platform-independence. There is a function to tell you the current |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
102 |
* platform's dir separator ("\\" on windows, "/" on Unix, ":" on MacOS), |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
103 |
* which is needed only to set up your search/write paths. There is a |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
104 |
* function to tell you what CD-ROM drives contain accessible discs, and a |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
105 |
* function to recommend a good search path, etc. |
1 | 106 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
107 |
* A recommended order for the search path is the write dir, then the base dir, |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
108 |
* then the cdrom dir, then any archives discovered. Quake 3 does something |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
109 |
* like this, but moves the archives to the start of the search path. Build |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
110 |
* Engine games, like Duke Nukem 3D and Blood, place the archives last, and |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
111 |
* use the base dir for both searching and writing. There is a helper |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
112 |
* function (PHYSFS_setSaneConfig()) that puts together a basic configuration |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
113 |
* for you, based on a few parameters. Also see the comments on |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
114 |
* PHYSFS_getBaseDir(), and PHYSFS_getUserDir() for info on what those |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
115 |
* are and how they can help you determine an optimal search path. |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
116 |
* |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
117 |
* PhysicsFS 2.0 adds the concept of "mounting" archives to arbitrary points |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
118 |
* in the search path. If a zipfile contains "maps/level.map" and you mount |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
119 |
* that archive at "mods/mymod", then you would have to open |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
120 |
* "mods/mymod/maps/level.map" to access the file, even though "mods/mymod" |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
121 |
* isn't actually specified in the .zip file. Unlike the Unix mentality of |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
122 |
* mounting a filesystem, "mods/mymod" doesn't actually have to exist when |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
123 |
* mounting the zipfile. It's a "virtual" directory. The mounting mechanism |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
124 |
* allows the developer to seperate archives in the tree and avoid trampling |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
125 |
* over files when added new archives, such as including mod support in a |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
126 |
* game...keeping external content on a tight leash in this manner can be of |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
127 |
* utmost importance to some applications. |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
128 |
* |
147
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
129 |
* PhysicsFS is mostly thread safe. The error messages returned by |
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
130 |
* PHYSFS_getLastError are unique by thread, and library-state-setting |
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
131 |
* functions are mutex'd. For efficiency, individual file accesses are |
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
132 |
* not locked, so you can not safely read/write/seek/close/etc the same |
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
133 |
* file from two threads at the same time. Other race conditions are bugs |
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
134 |
* that should be reported/patched. |
1 | 135 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
136 |
* While you CAN use stdio/syscall file access in a program that has PHYSFS_* |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
137 |
* calls, doing so is not recommended, and you can not use system |
147
5e1eda65ceb3
Updated comment on thread safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
138 |
* filehandles with PhysicsFS and vice versa. |
1 | 139 |
* |
140 |
* Note that archives need not be named as such: if you have a ZIP file and |
|
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
141 |
* rename it with a .PKG extension, the file will still be recognized as a |
1 | 142 |
* ZIP archive by PhysicsFS; the file's contents are used to determine its |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
143 |
* type where possible. |
1 | 144 |
* |
145 |
* Currently supported archive types: |
|
146 |
* - .ZIP (pkZip/WinZip/Info-ZIP compatible) |
|
1069
2f0de4ad18a5
Added some missing file types to the documentation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1054
diff
changeset
|
147 |
* - .7Z (7zip archives) |
2f0de4ad18a5
Added some missing file types to the documentation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1054
diff
changeset
|
148 |
* - .ISO (ISO9660 files, CD-ROM images) |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
149 |
* - .GRP (Build Engine groupfile archives) |
559
6fa9e48b537c
Forgot to mention qpak in the docs.
Ryan C. Gordon <icculus@icculus.org>
parents:
553
diff
changeset
|
150 |
* - .PAK (Quake I/II archive format) |
553
4338d9c0bbcd
Descent I/II HOG and MVL archive support (thanks, Bradley Bell!).
Ryan C. Gordon <icculus@icculus.org>
parents:
529
diff
changeset
|
151 |
* - .HOG (Descent I/II HOG file archives) |
4338d9c0bbcd
Descent I/II HOG and MVL archive support (thanks, Bradley Bell!).
Ryan C. Gordon <icculus@icculus.org>
parents:
529
diff
changeset
|
152 |
* - .MVL (Descent II movielib archives) |
609
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
588
diff
changeset
|
153 |
* - .WAD (DOOM engine archives) |
1 | 154 |
* |
785 | 155 |
* |
156 |
* String policy for PhysicsFS 2.0 and later: |
|
157 |
* |
|
807
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
158 |
* PhysicsFS 1.0 could only deal with null-terminated ASCII strings. All high |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
159 |
* ASCII chars resulted in undefined behaviour, and there was no Unicode |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
160 |
* support at all. PhysicsFS 2.0 supports Unicode without breaking binary |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
161 |
* compatibility with the 1.0 API by using UTF-8 encoding of all strings |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
162 |
* passed in and out of the library. |
785 | 163 |
* |
164 |
* All strings passed through PhysicsFS are in null-terminated UTF-8 format. |
|
165 |
* This means that if all you care about is English (ASCII characters <= 127) |
|
166 |
* then you just use regular C strings. If you care about Unicode (and you |
|
167 |
* should!) then you need to figure out what your platform wants, needs, and |
|
168 |
* offers. If you are on Windows and build with Unicode support, your TCHAR |
|
169 |
* strings are two bytes per character (this is called "UCS-2 encoding"). You |
|
170 |
* should convert them to UTF-8 before handing them to PhysicsFS with |
|
831
da5b8877b59d
Fixed Doxygen comments for UTF-8 functions.
Ryan C. Gordon <icculus@icculus.org>
parents:
830
diff
changeset
|
171 |
* PHYSFS_utf8FromUcs2(). If you're using Unix or Mac OS X, your wchar_t |
785 | 172 |
* strings are four bytes per character ("UCS-4 encoding"). Use |
831
da5b8877b59d
Fixed Doxygen comments for UTF-8 functions.
Ryan C. Gordon <icculus@icculus.org>
parents:
830
diff
changeset
|
173 |
* PHYSFS_utf8FromUcs4(). Mac OS X can give you UTF-8 directly from a |
789
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
174 |
* CFString, and many Unixes generally give you C strings in UTF-8 format |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
175 |
* everywhere. If you have a single-byte high ASCII charset, like so-many |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
176 |
* European "codepages" you may be out of luck. We'll convert from "Latin1" |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
177 |
* to UTF-8 only, and never back to Latin1. If you're above ASCII 127, all |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
178 |
* bets are off: move to Unicode or use your platform's facilities. Passing a |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
179 |
* C string with high-ASCII data that isn't UTF-8 encoded will NOT do what |
ede0553c4232
Fixed a comment in physfs.h.
Ryan C. Gordon <icculus@icculus.org>
parents:
785
diff
changeset
|
180 |
* you expect! |
785 | 181 |
* |
831
da5b8877b59d
Fixed Doxygen comments for UTF-8 functions.
Ryan C. Gordon <icculus@icculus.org>
parents:
830
diff
changeset
|
182 |
* Naturally, there's also PHYSFS_utf8ToUcs2() and PHYSFS_utf8ToUcs4() to get |
785 | 183 |
* data back into a format you like. Behind the scenes, PhysicsFS will use |
184 |
* Unicode where possible: the UTF-8 strings on Windows will be converted |
|
185 |
* and used with the multibyte Windows APIs, for example. |
|
186 |
* |
|
187 |
* PhysicsFS offers basic encoding conversion support, but not a whole string |
|
188 |
* library. Get your stuff into whatever format you can work with. |
|
189 |
* |
|
807
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
190 |
* Some platforms and archivers don't offer full Unicode support behind the |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
191 |
* scenes. For example, OS/2 only offers "codepages" and the filesystem |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
192 |
* itself doesn't support multibyte encodings. We make an earnest effort to |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
193 |
* convert to/from the current locale here, but all bets are off if |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
194 |
* you want to hand an arbitrary Japanese character through to these systems. |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
195 |
* Modern OSes (Mac OS X, Linux, Windows, PocketPC, etc) should all be fine. |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
196 |
* Many game-specific archivers are seriously unprepared for Unicode (the |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
197 |
* Descent HOG/MVL and Build Engine GRP archivers, for example, only offer a |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
198 |
* DOS 8.3 filename, for example). Nothing can be done for these, but they |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
199 |
* tend to be legacy formats for existing content that was all ASCII (and |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
200 |
* thus, valid UTF-8) anyhow. Other formats, like .ZIP, don't explicitly |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
201 |
* offer Unicode support, but unofficially expect filenames to be UTF-8 |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
202 |
* encoded, and thus Just Work. Most everything does the right thing without |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
203 |
* bothering you, but it's good to be aware of these nuances in case they |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
204 |
* don't. |
570b8e53495a
More ranting and raving about Unicode.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
205 |
* |
785 | 206 |
* |
207 |
* Other stuff: |
|
208 |
* |
|
809
116b8fe30371
Renamed LICENSE to LICENSE.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
807
diff
changeset
|
209 |
* Please see the file LICENSE.txt in the source's root directory for licensing |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
210 |
* and redistribution rights. |
1 | 211 |
* |
815
ca857540fd4f
Moved more files from FILENAME to FILENAME.txt ...
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
212 |
* Please see the file CREDITS.txt in the source's root directory for a more or |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
213 |
* less complete list of who's responsible for this. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
214 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
215 |
* \author Ryan C. Gordon. |
1 | 216 |
*/ |
217 |
||
218 |
#ifndef _INCLUDE_PHYSFS_H_ |
|
219 |
#define _INCLUDE_PHYSFS_H_ |
|
220 |
||
221 |
#ifdef __cplusplus |
|
222 |
extern "C" { |
|
223 |
#endif |
|
224 |
||
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
225 |
#if defined(PHYSFS_DECL) |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
226 |
/* do nothing. */ |
1026 | 227 |
#elif (defined SWIG) |
228 |
#define PHYSFS_DECL extern |
|
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
229 |
#elif (defined _MSC_VER) |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
230 |
#define PHYSFS_DECL __declspec(dllexport) |
991
9748fd040468
Added the Sun Studio equivalent of -fvisibility=hidden
Ryan C. Gordon <icculus@icculus.org>
parents:
979
diff
changeset
|
231 |
#elif (defined __SUNPRO_C) |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
232 |
#define PHYSFS_DECL __global |
994
4413637bdcf2
Corrected __EXPORT__ test for Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
991
diff
changeset
|
233 |
#elif ((__GNUC__ >= 3) && (!__EMX__) && (!sun)) |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
234 |
#define PHYSFS_DECL __attribute__((visibility("default"))) |
74
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
69
diff
changeset
|
235 |
#else |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
236 |
#define PHYSFS_DECL |
74
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
69
diff
changeset
|
237 |
#endif |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
69
diff
changeset
|
238 |
|
1025
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
239 |
#if 0 /* !!! FIXME: look into this later. */ |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
240 |
#if defined(PHYSFS_CALL) |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
241 |
/* do nothing. */ |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
242 |
#elif defined(__WIN32__) && !defined(__GNUC__) |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
243 |
#define PHYSFS_CALL __cdecl |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
244 |
#elif defined(__OS2__) /* use _System, so it works across all compilers. */ |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
245 |
#define PHYSFS_CALL _System |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
246 |
#else |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
247 |
#define PHYSFS_CALL |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
248 |
#endif |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
249 |
#endif |
b91967e1dc40
Added some (disabled!) calling conventions stuff.
Ryan C. Gordon <icculus@icculus.org>
parents:
1024
diff
changeset
|
250 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
251 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
252 |
* \typedef PHYSFS_uint8 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
253 |
* \brief An unsigned, 8-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
254 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
255 |
typedef unsigned char PHYSFS_uint8; |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
256 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
257 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
258 |
* \typedef PHYSFS_sint8 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
259 |
* \brief A signed, 8-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
260 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
261 |
typedef signed char PHYSFS_sint8; |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
262 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
263 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
264 |
* \typedef PHYSFS_uint16 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
265 |
* \brief An unsigned, 16-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
266 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
267 |
typedef unsigned short PHYSFS_uint16; |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
268 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
269 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
270 |
* \typedef PHYSFS_sint16 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
271 |
* \brief A signed, 16-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
272 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
273 |
typedef signed short PHYSFS_sint16; |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
274 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
275 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
276 |
* \typedef PHYSFS_uint32 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
277 |
* \brief An unsigned, 32-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
278 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
279 |
typedef unsigned int PHYSFS_uint32; |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
280 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
281 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
282 |
* \typedef PHYSFS_sint32 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
283 |
* \brief A signed, 32-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
284 |
*/ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
285 |
typedef signed int PHYSFS_sint32; |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
286 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
287 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
288 |
* \typedef PHYSFS_uint64 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
289 |
* \brief An unsigned, 64-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
290 |
* \warning on platforms without any sort of 64-bit datatype, this is |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
291 |
* equivalent to PHYSFS_uint32! |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
292 |
*/ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
293 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
294 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
295 |
* \typedef PHYSFS_sint64 |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
296 |
* \brief A signed, 64-bit integer type. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
297 |
* \warning on platforms without any sort of 64-bit datatype, this is |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
298 |
* equivalent to PHYSFS_sint32! |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
299 |
*/ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
300 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
301 |
|
194
09c353d30cd4
Patches for correctness and cleaner win32 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
178
diff
changeset
|
302 |
#if (defined PHYSFS_NO_64BIT_SUPPORT) /* oh well. */ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
303 |
typedef PHYSFS_uint32 PHYSFS_uint64; |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
304 |
typedef PHYSFS_sint32 PHYSFS_sint64; |
194
09c353d30cd4
Patches for correctness and cleaner win32 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
178
diff
changeset
|
305 |
#elif (defined _MSC_VER) |
09c353d30cd4
Patches for correctness and cleaner win32 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
178
diff
changeset
|
306 |
typedef signed __int64 PHYSFS_sint64; |
09c353d30cd4
Patches for correctness and cleaner win32 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
178
diff
changeset
|
307 |
typedef unsigned __int64 PHYSFS_uint64; |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
308 |
#else |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
309 |
typedef unsigned long long PHYSFS_uint64; |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
310 |
typedef signed long long PHYSFS_sint64; |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
311 |
#endif |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
312 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
313 |
|
1026 | 314 |
#ifndef SWIG |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
315 |
#ifndef DOXYGEN_SHOULD_IGNORE_THIS |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
316 |
/* Make sure the types really have the right sizes */ |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
317 |
#define PHYSFS_COMPILE_TIME_ASSERT(name, x) \ |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
318 |
typedef int PHYSFS_dummy_ ## name[(x) * 2 - 1] |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
319 |
|
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
320 |
PHYSFS_COMPILE_TIME_ASSERT(uint8, sizeof(PHYSFS_uint8) == 1); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
321 |
PHYSFS_COMPILE_TIME_ASSERT(sint8, sizeof(PHYSFS_sint8) == 1); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
322 |
PHYSFS_COMPILE_TIME_ASSERT(uint16, sizeof(PHYSFS_uint16) == 2); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
323 |
PHYSFS_COMPILE_TIME_ASSERT(sint16, sizeof(PHYSFS_sint16) == 2); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
324 |
PHYSFS_COMPILE_TIME_ASSERT(uint32, sizeof(PHYSFS_uint32) == 4); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
325 |
PHYSFS_COMPILE_TIME_ASSERT(sint32, sizeof(PHYSFS_sint32) == 4); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
326 |
|
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
327 |
#ifndef PHYSFS_NO_64BIT_SUPPORT |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
328 |
PHYSFS_COMPILE_TIME_ASSERT(uint64, sizeof(PHYSFS_uint64) == 8); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
329 |
PHYSFS_COMPILE_TIME_ASSERT(sint64, sizeof(PHYSFS_sint64) == 8); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
330 |
#endif |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
331 |
|
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
332 |
#undef PHYSFS_COMPILE_TIME_ASSERT |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
333 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
334 |
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
1026 | 335 |
#endif /* SWIG */ |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
336 |
|
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
128
diff
changeset
|
337 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
338 |
/** |
654
c0ae01de361d
Changed PHYSFS_file to PHYSFS_File to match rest of API's naming
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
339 |
* \struct PHYSFS_File |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
340 |
* \brief A PhysicsFS file handle. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
341 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
342 |
* You get a pointer to one of these when you open a file for reading, |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
343 |
* writing, or appending via PhysicsFS. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
344 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
345 |
* As you can see from the lack of meaningful fields, you should treat this |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
346 |
* as opaque data. Don't try to manipulate the file handle, just pass the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
347 |
* pointer you got, unmolested, to various PhysicsFS APIs. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
348 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
349 |
* \sa PHYSFS_openRead |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
350 |
* \sa PHYSFS_openWrite |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
351 |
* \sa PHYSFS_openAppend |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
352 |
* \sa PHYSFS_close |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
353 |
* \sa PHYSFS_read |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
354 |
* \sa PHYSFS_write |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
355 |
* \sa PHYSFS_seek |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
356 |
* \sa PHYSFS_tell |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
357 |
* \sa PHYSFS_eof |
508 | 358 |
* \sa PHYSFS_setBuffer |
359 |
* \sa PHYSFS_flush |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
360 |
*/ |
943
5df593de06e2
Added struct typedefs that you can predeclare without including physfs.h
Ryan C. Gordon <icculus@icculus.org>
parents:
897
diff
changeset
|
361 |
typedef struct PHYSFS_File |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
362 |
{ |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
363 |
void *opaque; /**< That's all you get. Don't touch. */ |
654
c0ae01de361d
Changed PHYSFS_file to PHYSFS_File to match rest of API's naming
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
364 |
} PHYSFS_File; |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
365 |
|
830
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
366 |
|
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
367 |
/** |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
368 |
* \def PHYSFS_file |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
369 |
* \brief 1.0 API compatibility define. |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
370 |
* |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
371 |
* PHYSFS_file is identical to PHYSFS_File. This #define is here for backwards |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
372 |
* compatibility with the 1.0 API, which had an inconsistent capitalization |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
373 |
* convention in this case. New code should use PHYSFS_File, as this #define |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
374 |
* may go away someday. |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
375 |
* |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
376 |
* \sa PHYSFS_File |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
377 |
*/ |
adf9646a3b77
Changed PHYSFS_file from a typedef to a #define for legacy code.
Ryan C. Gordon <icculus@icculus.org>
parents:
828
diff
changeset
|
378 |
#define PHYSFS_file PHYSFS_File |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
379 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
380 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
381 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
382 |
* \struct PHYSFS_ArchiveInfo |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
383 |
* \brief Information on various PhysicsFS-supported archives. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
384 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
385 |
* This structure gives you details on what sort of archives are supported |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
386 |
* by this implementation of PhysicsFS. Archives tend to be things like |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
387 |
* ZIP files and such. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
388 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
389 |
* \warning Not all binaries are created equal! PhysicsFS can be built with |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
390 |
* or without support for various archives. You can check with |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
391 |
* PHYSFS_supportedArchiveTypes() to see if your archive type is |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
392 |
* supported. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
393 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
394 |
* \sa PHYSFS_supportedArchiveTypes |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
395 |
*/ |
943
5df593de06e2
Added struct typedefs that you can predeclare without including physfs.h
Ryan C. Gordon <icculus@icculus.org>
parents:
897
diff
changeset
|
396 |
typedef struct PHYSFS_ArchiveInfo |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
397 |
{ |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
398 |
const char *extension; /**< Archive file extension: "ZIP", for example. */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
399 |
const char *description; /**< Human-readable archive description. */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
400 |
const char *author; /**< Person who did support for this archive. */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
401 |
const char *url; /**< URL related to this archive */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
402 |
} PHYSFS_ArchiveInfo; |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
403 |
|
508 | 404 |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
405 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
406 |
* \struct PHYSFS_Version |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
407 |
* \brief Information the version of PhysicsFS in use. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
408 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
409 |
* Represents the library's version as three levels: major revision |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
410 |
* (increments with massive changes, additions, and enhancements), |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
411 |
* minor revision (increments with backwards-compatible changes to the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
412 |
* major revision), and patchlevel (increments with fixes to the minor |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
413 |
* revision). |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
414 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
415 |
* \sa PHYSFS_VERSION |
779
7acc8a8abdf6
Fixed typo in Doxygen comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
772
diff
changeset
|
416 |
* \sa PHYSFS_getLinkedVersion |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
417 |
*/ |
943
5df593de06e2
Added struct typedefs that you can predeclare without including physfs.h
Ryan C. Gordon <icculus@icculus.org>
parents:
897
diff
changeset
|
418 |
typedef struct PHYSFS_Version |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
419 |
{ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
420 |
PHYSFS_uint8 major; /**< major revision */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
421 |
PHYSFS_uint8 minor; /**< minor revision */ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
422 |
PHYSFS_uint8 patch; /**< patchlevel */ |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
423 |
} PHYSFS_Version; |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
424 |
|
1026 | 425 |
|
426 |
#ifndef SWIG /* not available from scripting languages. */ |
|
427 |
||
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
428 |
#ifndef DOXYGEN_SHOULD_IGNORE_THIS |
956
3da716cfe09f
Upped version to 2.0.0!
Ryan C. Gordon <icculus@icculus.org>
parents:
944
diff
changeset
|
429 |
#define PHYSFS_VER_MAJOR 2 |
974
5cabc31eb563
Bumped version number (although we're probably far from a real 2.1.0 release).
Ryan C. Gordon <icculus@icculus.org>
parents:
973
diff
changeset
|
430 |
#define PHYSFS_VER_MINOR 1 |
956
3da716cfe09f
Upped version to 2.0.0!
Ryan C. Gordon <icculus@icculus.org>
parents:
944
diff
changeset
|
431 |
#define PHYSFS_VER_PATCH 0 |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
432 |
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
433 |
|
508 | 434 |
|
435 |
/* PhysicsFS state stuff ... */ |
|
436 |
||
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
437 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
438 |
* \def PHYSFS_VERSION(x) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
439 |
* \brief Macro to determine PhysicsFS version program was compiled against. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
440 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
441 |
* This macro fills in a PHYSFS_Version structure with the version of the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
442 |
* library you compiled against. This is determined by what header the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
443 |
* compiler uses. Note that if you dynamically linked the library, you might |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
444 |
* have a slightly newer or older version at runtime. That version can be |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
445 |
* determined with PHYSFS_getLinkedVersion(), which, unlike PHYSFS_VERSION, |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
446 |
* is not a macro. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
447 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
448 |
* \param x A pointer to a PHYSFS_Version struct to initialize. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
449 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
450 |
* \sa PHYSFS_Version |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
451 |
* \sa PHYSFS_getLinkedVersion |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
452 |
*/ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
453 |
#define PHYSFS_VERSION(x) \ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
454 |
{ \ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
455 |
(x)->major = PHYSFS_VER_MAJOR; \ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
456 |
(x)->minor = PHYSFS_VER_MINOR; \ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
457 |
(x)->patch = PHYSFS_VER_PATCH; \ |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
458 |
} |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
459 |
|
1026 | 460 |
#endif /* SWIG */ |
461 |
||
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
462 |
|
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
463 |
/** |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
464 |
* \fn void PHYSFS_getLinkedVersion(PHYSFS_Version *ver) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
465 |
* \brief Get the version of PhysicsFS that is linked against your program. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
466 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
467 |
* If you are using a shared library (DLL) version of PhysFS, then it is |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
468 |
* possible that it will be different than the version you compiled against. |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
469 |
* |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
470 |
* This is a real function; the macro PHYSFS_VERSION tells you what version |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
471 |
* of PhysFS you compiled against: |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
472 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
473 |
* \code |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
474 |
* PHYSFS_Version compiled; |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
475 |
* PHYSFS_Version linked; |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
476 |
* |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
477 |
* PHYSFS_VERSION(&compiled); |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
478 |
* PHYSFS_getLinkedVersion(&linked); |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
479 |
* printf("We compiled against PhysFS version %d.%d.%d ...\n", |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
480 |
* compiled.major, compiled.minor, compiled.patch); |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
481 |
* printf("But we linked against PhysFS version %d.%d.%d.\n", |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
482 |
* linked.major, linked.minor, linked.patch); |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
483 |
* \endcode |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
484 |
* |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
485 |
* This function may be called safely at any time, even before PHYSFS_init(). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
486 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
487 |
* \sa PHYSFS_VERSION |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
488 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
489 |
PHYSFS_DECL void PHYSFS_getLinkedVersion(PHYSFS_Version *ver); |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
490 |
|
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
491 |
|
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
492 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
493 |
* \fn int PHYSFS_init(const char *argv0) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
494 |
* \brief Initialize the PhysicsFS library. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
495 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
496 |
* This must be called before any other PhysicsFS function. |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
497 |
* |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
15
diff
changeset
|
498 |
* This should be called prior to any attempts to change your process's |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
15
diff
changeset
|
499 |
* current working directory. |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
15
diff
changeset
|
500 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
501 |
* \param argv0 the argv[0] string passed to your program's mainline. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
502 |
* This may be NULL on most platforms (such as ones without a |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
503 |
* standard main() function), but you should always try to pass |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
504 |
* something in here. Unix-like systems such as Linux _need_ to |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
505 |
* pass argv[0] from main() in here. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
506 |
* \return nonzero on success, zero on error. Specifics of the error can be |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
507 |
* gleaned from PHYSFS_getLastError(). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
508 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
509 |
* \sa PHYSFS_deinit |
876
0d8e41a5c831
Added PHYSFS_isInit() function.
Ryan C. Gordon <icculus@icculus.org>
parents:
872
diff
changeset
|
510 |
* \sa PHYSFS_isInit |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
511 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
512 |
PHYSFS_DECL int PHYSFS_init(const char *argv0); |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
513 |
|
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
514 |
|
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
515 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
516 |
* \fn int PHYSFS_deinit(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
517 |
* \brief Deinitialize the PhysicsFS library. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
518 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
519 |
* This closes any files opened via PhysicsFS, blanks the search/write paths, |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
520 |
* frees memory, and invalidates all of your file handles. |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
521 |
* |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
522 |
* Note that this call can FAIL if there's a file open for writing that |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
523 |
* refuses to close (for example, the underlying operating system was |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
524 |
* buffering writes to network filesystem, and the fileserver has crashed, |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
525 |
* or a hard drive has failed, etc). It is usually best to close all write |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
526 |
* handles yourself before calling this function, so that you can gracefully |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
527 |
* handle a specific failure. |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
528 |
* |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
529 |
* Once successfully deinitialized, PHYSFS_init() can be called again to |
897
4adcb2c5567b
Minor documentation fix.
Ryan C. Gordon <icculus@icculus.org>
parents:
882
diff
changeset
|
530 |
* restart the subsystem. All default API states are restored at this |
4adcb2c5567b
Minor documentation fix.
Ryan C. Gordon <icculus@icculus.org>
parents:
882
diff
changeset
|
531 |
* point, with the exception of any custom allocator you might have |
4adcb2c5567b
Minor documentation fix.
Ryan C. Gordon <icculus@icculus.org>
parents:
882
diff
changeset
|
532 |
* specified, which survives between initializations. |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
533 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
534 |
* \return nonzero on success, zero on error. Specifics of the error can be |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
535 |
* gleaned from PHYSFS_getLastError(). If failure, state of PhysFS is |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
536 |
* undefined, and probably badly screwed up. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
537 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
538 |
* \sa PHYSFS_init |
876
0d8e41a5c831
Added PHYSFS_isInit() function.
Ryan C. Gordon <icculus@icculus.org>
parents:
872
diff
changeset
|
539 |
* \sa PHYSFS_isInit |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
540 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
541 |
PHYSFS_DECL int PHYSFS_deinit(void); |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
542 |
|
1 | 543 |
|
544 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
545 |
* \fn const PHYSFS_ArchiveInfo **PHYSFS_supportedArchiveTypes(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
546 |
* \brief Get a list of supported archive types. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
547 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
548 |
* Get a list of archive types supported by this implementation of PhysicFS. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
549 |
* These are the file formats usable for search path entries. This is for |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
550 |
* informational purposes only. Note that the extension listed is merely |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
551 |
* convention: if we list "ZIP", you can open a PkZip-compatible archive |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
552 |
* with an extension of "XYZ", if you like. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
553 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
554 |
* The returned value is an array of pointers to PHYSFS_ArchiveInfo structures, |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
555 |
* with a NULL entry to signify the end of the list: |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
556 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
557 |
* \code |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
558 |
* PHYSFS_ArchiveInfo **i; |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
559 |
* |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
560 |
* for (i = PHYSFS_supportedArchiveTypes(); *i != NULL; i++) |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
561 |
* { |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
562 |
* printf("Supported archive: [%s], which is [%s].\n", |
944
4a814e7fee5d
Corrected example code in the docs (thanks, Olivier!).
Ryan C. Gordon <icculus@icculus.org>
parents:
943
diff
changeset
|
563 |
* (*i)->extension, (*i)->description); |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
564 |
* } |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
565 |
* \endcode |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
566 |
* |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
567 |
* The return values are pointers to static internal memory, and should |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
568 |
* be considered READ ONLY, and never freed. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
569 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
570 |
* \return READ ONLY Null-terminated array of READ ONLY structures. |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
571 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
572 |
PHYSFS_DECL const PHYSFS_ArchiveInfo **PHYSFS_supportedArchiveTypes(void); |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
573 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
574 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
575 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
576 |
* \fn void PHYSFS_freeList(void *listVar) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
577 |
* \brief Deallocate resources of lists returned by PhysicsFS. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
578 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
579 |
* Certain PhysicsFS functions return lists of information that are |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
580 |
* dynamically allocated. Use this function to free those resources. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
581 |
* |
975
653a53e51931
PHYSFS_freeList(NULL) is now a safe no-op.
Ryan C. Gordon <icculus@icculus.org>
parents:
974
diff
changeset
|
582 |
* It is safe to pass a NULL here, but doing so will cause a crash in versions |
653a53e51931
PHYSFS_freeList(NULL) is now a safe no-op.
Ryan C. Gordon <icculus@icculus.org>
parents:
974
diff
changeset
|
583 |
* before PhysicsFS 2.1.0. |
653a53e51931
PHYSFS_freeList(NULL) is now a safe no-op.
Ryan C. Gordon <icculus@icculus.org>
parents:
974
diff
changeset
|
584 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
585 |
* \param listVar List of information specified as freeable by this function. |
975
653a53e51931
PHYSFS_freeList(NULL) is now a safe no-op.
Ryan C. Gordon <icculus@icculus.org>
parents:
974
diff
changeset
|
586 |
* Passing NULL is safe; it is a valid no-op. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
587 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
588 |
* \sa PHYSFS_getCdRomDirs |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
589 |
* \sa PHYSFS_enumerateFiles |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
590 |
* \sa PHYSFS_getSearchPath |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
591 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
592 |
PHYSFS_DECL void PHYSFS_freeList(void *listVar); |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
593 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
594 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
595 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
596 |
* \fn const char *PHYSFS_getLastError(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
597 |
* \brief Get human-readable error information. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
598 |
* |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
599 |
* Get the last PhysicsFS error message as a human-readable, null-terminated |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
600 |
* string. This will be NULL if there's been no error since the last call to |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
601 |
* this function. The pointer returned by this call points to an internal |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
602 |
* buffer. Each thread has a unique error state associated with it, but each |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
603 |
* time a new error message is set, it will overwrite the previous one |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
604 |
* associated with that thread. It is safe to call this function at anytime, |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
605 |
* even before PHYSFS_init(). |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
606 |
* |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
607 |
* It is not wise to expect a specific string of characters here, since the |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
608 |
* error message may be localized into an unfamiliar language. These strings |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
609 |
* are meant to be passed on directly to the user. |
1 | 610 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
611 |
* \return READ ONLY string of last error message. |
1 | 612 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
613 |
PHYSFS_DECL const char *PHYSFS_getLastError(void); |
1 | 614 |
|
615 |
||
616 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
617 |
* \fn const char *PHYSFS_getDirSeparator(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
618 |
* \brief Get platform-dependent dir separator string. |
1 | 619 |
* |
882
4dc4aba15d1e
Fixed Doxygen comment (this was probably a Doxygen bug that was since fixed).
Ryan C. Gordon <icculus@icculus.org>
parents:
881
diff
changeset
|
620 |
* This returns "\\" on win32, "/" on Unix, and ":" on MacOS. It may be more |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
621 |
* than one character, depending on the platform, and your code should take |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
622 |
* that into account. Note that this is only useful for setting up the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
623 |
* search/write paths, since access into those dirs always use '/' |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
624 |
* (platform-independent notation) to separate directories. This is also |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
625 |
* handy for getting platform-independent access when using stdio calls. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
626 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
627 |
* \return READ ONLY null-terminated string of platform's dir separator. |
1 | 628 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
629 |
PHYSFS_DECL const char *PHYSFS_getDirSeparator(void); |
1 | 630 |
|
631 |
||
632 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
633 |
* \fn void PHYSFS_permitSymbolicLinks(int allow) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
634 |
* \brief Enable or disable following of symbolic links. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
635 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
636 |
* Some physical filesystems and archives contain files that are just pointers |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
637 |
* to other files. On the physical filesystem, opening such a link will |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
638 |
* (transparently) open the file that is pointed to. |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
639 |
* |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
640 |
* By default, PhysicsFS will check if a file is really a symlink during open |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
641 |
* calls and fail if it is. Otherwise, the link could take you outside the |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
642 |
* write and search paths, and compromise security. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
643 |
* |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
644 |
* If you want to take that risk, call this function with a non-zero parameter. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
645 |
* Note that this is more for sandboxing a program's scripting language, in |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
646 |
* case untrusted scripts try to compromise the system. Generally speaking, |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
647 |
* a user could very well have a legitimate reason to set up a symlink, so |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
648 |
* unless you feel there's a specific danger in allowing them, you should |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
649 |
* permit them. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
650 |
* |
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
33
diff
changeset
|
651 |
* Symlinks are only explicitly checked when dealing with filenames |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
33
diff
changeset
|
652 |
* in platform-independent notation. That is, when setting up your |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
33
diff
changeset
|
653 |
* search and write paths, etc, symlinks are never checked for. |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
33
diff
changeset
|
654 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
655 |
* Symbolic link permission can be enabled or disabled at any time after |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
656 |
* you've called PHYSFS_init(), and is disabled by default. |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
657 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
658 |
* \param allow nonzero to permit symlinks, zero to deny linking. |
877
99c2fd8e689d
Added PHYSFS_symbolicLinksPermitted().
Ryan C. Gordon <icculus@icculus.org>
parents:
876
diff
changeset
|
659 |
* |
99c2fd8e689d
Added PHYSFS_symbolicLinksPermitted().
Ryan C. Gordon <icculus@icculus.org>
parents:
876
diff
changeset
|
660 |
* \sa PHYSFS_symbolicLinksPermitted |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
661 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
662 |
PHYSFS_DECL void PHYSFS_permitSymbolicLinks(int allow); |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
663 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
664 |
|
879 | 665 |
/* !!! FIXME: const this? */ |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
666 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
667 |
* \fn char **PHYSFS_getCdRomDirs(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
668 |
* \brief Get an array of paths to available CD-ROM drives. |
1 | 669 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
670 |
* The dirs returned are platform-dependent ("D:\" on Win32, "/cdrom" or |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
671 |
* whatnot on Unix). Dirs are only returned if there is a disc ready and |
1 | 672 |
* accessible in the drive. So if you've got two drives (D: and E:), and only |
673 |
* E: has a disc in it, then that's all you get. If the user inserts a disc |
|
674 |
* in D: and you call this function again, you get both drives. If, on a |
|
675 |
* Unix box, the user unmounts a disc and remounts it elsewhere, the next |
|
881
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
676 |
* call to this function will reflect that change. |
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
677 |
* |
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
678 |
* This function refers to "CD-ROM" media, but it really means "inserted disc |
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
679 |
* media," such as DVD-ROM, HD-DVD, CDRW, and Blu-Ray discs. It looks for |
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
680 |
* filesystems, and as such won't report an audio CD, unless there's a |
57622b68ebf1
Improved Doxygen comments.
Ryan C. Gordon <icculus@icculus.org>
parents:
880
diff
changeset
|
681 |
* mounted filesystem track on it. |
1 | 682 |
* |
683 |
* The returned value is an array of strings, with a NULL entry to signify the |
|
684 |
* end of the list: |
|
685 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
686 |
* \code |
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
687 |
* char **cds = PHYSFS_getCdRomDirs(); |
1 | 688 |
* char **i; |
689 |
* |
|
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
690 |
* for (i = cds; *i != NULL; i++) |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
691 |
* printf("cdrom dir [%s] is available.\n", *i); |
1 | 692 |
* |
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
693 |
* PHYSFS_freeList(cds); |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
694 |
* \endcode |
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
695 |
* |
1 | 696 |
* This call may block while drives spin up. Be forewarned. |
697 |
* |
|
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
698 |
* When you are done with the returned information, you may dispose of the |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
699 |
* resources by calling PHYSFS_freeList() with the returned pointer. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
700 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
701 |
* \return Null-terminated array of null-terminated strings. |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
702 |
* |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
703 |
* \sa PHYSFS_getCdRomDirsCallback |
1 | 704 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
705 |
PHYSFS_DECL char **PHYSFS_getCdRomDirs(void); |
1 | 706 |
|
707 |
||
708 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
709 |
* \fn const char *PHYSFS_getBaseDir(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
710 |
* \brief Get the path where the application resides. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
711 |
* |
1 | 712 |
* Helper function. |
713 |
* |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
714 |
* Get the "base dir". This is the directory where the application was run |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
715 |
* from, which is probably the installation directory, and may or may not |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
716 |
* be the process's current working directory. |
1 | 717 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
718 |
* You should probably use the base dir in your search path. |
1 | 719 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
720 |
* \return READ ONLY string of base dir in platform-dependent notation. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
721 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
722 |
* \sa PHYSFS_getUserDir |
1 | 723 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
724 |
PHYSFS_DECL const char *PHYSFS_getBaseDir(void); |
1 | 725 |
|
726 |
||
727 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
728 |
* \fn const char *PHYSFS_getUserDir(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
729 |
* \brief Get the path where user's home directory resides. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
730 |
* |
1 | 731 |
* Helper function. |
732 |
* |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
733 |
* Get the "user dir". This is meant to be a suggestion of where a specific |
1 | 734 |
* user of the system can store files. On Unix, this is her home directory. |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
735 |
* On systems with no concept of multiple home directories (MacOS, win95), |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
736 |
* this will default to something like "C:\mybasedir\users\username" |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
737 |
* where "username" will either be the login name, or "default" if the |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
738 |
* platform doesn't support multiple users, either. |
1 | 739 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
740 |
* You should probably use the user dir as the basis for your write dir, and |
1 | 741 |
* also put it near the beginning of your search path. |
742 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
743 |
* \return READ ONLY string of user dir in platform-dependent notation. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
744 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
745 |
* \sa PHYSFS_getBaseDir |
1 | 746 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
747 |
PHYSFS_DECL const char *PHYSFS_getUserDir(void); |
1 | 748 |
|
749 |
||
750 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
751 |
* \fn const char *PHYSFS_getWriteDir(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
752 |
* \brief Get path where PhysicsFS will allow file writing. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
753 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
754 |
* Get the current write dir. The default write dir is NULL. |
1 | 755 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
756 |
* \return READ ONLY string of write dir in platform-dependent notation, |
1 | 757 |
* OR NULL IF NO WRITE PATH IS CURRENTLY SET. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
758 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
759 |
* \sa PHYSFS_setWriteDir |
1 | 760 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
761 |
PHYSFS_DECL const char *PHYSFS_getWriteDir(void); |
1 | 762 |
|
763 |
||
764 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
765 |
* \fn int PHYSFS_setWriteDir(const char *newDir) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
766 |
* \brief Tell PhysicsFS where it may write files. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
767 |
* |
762
63f2585b5a5e
Fixed documentation for PHYSFS_setWriteDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
754
diff
changeset
|
768 |
* Set a new write dir. This will override the previous setting. |
1 | 769 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
770 |
* This call will fail (and fail to change the write dir) if the current |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
771 |
* write dir still has files open in it. |
1 | 772 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
773 |
* \param newDir The new directory to be the root of the write dir, |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
774 |
* specified in platform-dependent notation. Setting to NULL |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
775 |
* disables the write dir, so no files can be opened for |
1 | 776 |
* writing via PhysicsFS. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
777 |
* \return non-zero on success, zero on failure. All attempts to open a file |
1 | 778 |
* for writing via PhysicsFS will fail until this call succeeds. |
779 |
* Specifics of the error can be gleaned from PHYSFS_getLastError(). |
|
780 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
781 |
* \sa PHYSFS_getWriteDir |
1 | 782 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
783 |
PHYSFS_DECL int PHYSFS_setWriteDir(const char *newDir); |
1 | 784 |
|
785 |
||
786 |
/** |
|
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
787 |
* \fn int PHYSFS_addToSearchPath(const char *newDir, int appendToPath) |
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
788 |
* \brief Add an archive or directory to the search path. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
789 |
* |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
790 |
* This is a legacy call in PhysicsFS 2.0, equivalent to: |
683
e724adb731df
Split off sanitizePlatformIndependentPath() from verifySecurity(), which makes
Ryan C. Gordon <icculus@icculus.org>
parents:
679
diff
changeset
|
791 |
* PHYSFS_mount(newDir, NULL, appendToPath); |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
792 |
* |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
793 |
* You must use this and not PHYSFS_mount if binary compatibility with |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
794 |
* PhysicsFS 1.0 is important (which it may not be for many people). |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
795 |
* |
679
ae75b5548364
First chunk of PHYSFS_mount() implementation. Incomplete!
Ryan C. Gordon <icculus@icculus.org>
parents:
669
diff
changeset
|
796 |
* \sa PHYSFS_mount |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
797 |
* \sa PHYSFS_removeFromSearchPath |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
798 |
* \sa PHYSFS_getSearchPath |
1 | 799 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
800 |
PHYSFS_DECL int PHYSFS_addToSearchPath(const char *newDir, int appendToPath); |
1 | 801 |
|
802 |
||
803 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
804 |
* \fn int PHYSFS_removeFromSearchPath(const char *oldDir) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
805 |
* \brief Remove a directory or archive from the search path. |
1 | 806 |
* |
807 |
* This must be a (case-sensitive) match to a dir or archive already in the |
|
808 |
* search path, specified in platform-dependent notation. |
|
809 |
* |
|
810 |
* This call will fail (and fail to remove from the path) if the element still |
|
811 |
* has files open in it. |
|
812 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
813 |
* \param oldDir dir/archive to remove. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
814 |
* \return nonzero on success, zero on failure. |
1 | 815 |
* Specifics of the error can be gleaned from PHYSFS_getLastError(). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
816 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
817 |
* \sa PHYSFS_addToSearchPath |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
818 |
* \sa PHYSFS_getSearchPath |
1 | 819 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
820 |
PHYSFS_DECL int PHYSFS_removeFromSearchPath(const char *oldDir); |
1 | 821 |
|
822 |
||
823 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
824 |
* \fn char **PHYSFS_getSearchPath(void) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
825 |
* \brief Get the current search path. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
826 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
827 |
* The default search path is an empty list. |
1 | 828 |
* |
829 |
* The returned value is an array of strings, with a NULL entry to signify the |
|
830 |
* end of the list: |
|
831 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
832 |
* \code |
1 | 833 |
* char **i; |
834 |
* |
|
835 |
* for (i = PHYSFS_getSearchPath(); *i != NULL; i++) |
|
836 |
* printf("[%s] is in the search path.\n", *i); |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
837 |
* \endcode |
1 | 838 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
839 |
* When you are done with the returned information, you may dispose of the |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
840 |
* resources by calling PHYSFS_freeList() with the returned pointer. |
1 | 841 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
842 |
* \return Null-terminated array of null-terminated strings. NULL if there |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
843 |
* was a problem (read: OUT OF MEMORY). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
844 |
* |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
845 |
* \sa PHYSFS_getSearchPathCallback |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
846 |
* \sa PHYSFS_addToSearchPath |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
847 |
* \sa PHYSFS_removeFromSearchPath |
1 | 848 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
849 |
PHYSFS_DECL char **PHYSFS_getSearchPath(void); |
1 | 850 |
|
851 |
||
852 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
853 |
* \fn int PHYSFS_setSaneConfig(const char *organization, const char *appName, const char *archiveExt, int includeCdRoms, int archivesFirst) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
854 |
* \brief Set up sane, default paths. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
855 |
* |
1 | 856 |
* Helper function. |
857 |
* |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
858 |
* The write dir will be set to "userdir/.organization/appName", which is |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
859 |
* created if it doesn't exist. |
1 | 860 |
* |
861 |
* The above is sufficient to make sure your program's configuration directory |
|
862 |
* is separated from other clutter, and platform-independent. The period |
|
863 |
* before "mygame" even hides the directory on Unix systems. |
|
864 |
* |
|
865 |
* The search path will be: |
|
866 |
* |
|
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
867 |
* - The Write Dir (created if it doesn't exist) |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
868 |
* - The Base Dir (PHYSFS_getBaseDir()) |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
869 |
* - All found CD-ROM dirs (optionally) |
1 | 870 |
* |
871 |
* These directories are then searched for files ending with the extension |
|
872 |
* (archiveExt), which, if they are valid and supported archives, will also |
|
873 |
* be added to the search path. If you specified "PKG" for (archiveExt), and |
|
874 |
* there's a file named data.PKG in the base dir, it'll be checked. Archives |
|
875 |
* can either be appended or prepended to the search path in alphabetical |
|
876 |
* order, regardless of which directories they were found in. |
|
877 |
* |
|
878 |
* All of this can be accomplished from the application, but this just does it |
|
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
879 |
* all for you. Feel free to add more to the search path manually, too. |
1 | 880 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
881 |
* \param organization Name of your company/group/etc to be used as a |
101
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
99
diff
changeset
|
882 |
* dirname, so keep it small, and no-frills. |
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
99
diff
changeset
|
883 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
884 |
* \param appName Program-specific name of your program, to separate it |
1 | 885 |
* from other programs using PhysicsFS. |
886 |
* |
|
397
12ff23d3d716
Fixed a typo in the documentation.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
887 |
* \param archiveExt File extension used by your program to specify an |
1 | 888 |
* archive. For example, Quake 3 uses "pk3", even though |
889 |
* they are just zipfiles. Specify NULL to not dig out |
|
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
890 |
* archives automatically. Do not specify the '.' char; |
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
891 |
* If you want to look for ZIP files, specify "ZIP" and |
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
892 |
* not ".ZIP" ... the archive search is case-insensitive. |
1 | 893 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
894 |
* \param includeCdRoms Non-zero to include CD-ROMs in the search path, and |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
895 |
* (if (archiveExt) != NULL) search them for archives. |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
896 |
* This may cause a significant amount of blocking |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
897 |
* while discs are accessed, and if there are no discs |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
898 |
* in the drive (or even not mounted on Unix systems), |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
899 |
* then they may not be made available anyhow. You may |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
900 |
* want to specify zero and handle the disc setup |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
901 |
* yourself. |
1 | 902 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
903 |
* \param archivesFirst Non-zero to prepend the archives to the search path. |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
904 |
* Zero to append them. Ignored if !(archiveExt). |
101
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
99
diff
changeset
|
905 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
906 |
* \return nonzero on success, zero on error. Specifics of the error can be |
8
41e4c6031535
Typo fixes, clarifications, and corrections.
Ryan C. Gordon <icculus@icculus.org>
parents:
6
diff
changeset
|
907 |
* gleaned from PHYSFS_getLastError(). |
1 | 908 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
909 |
PHYSFS_DECL int PHYSFS_setSaneConfig(const char *organization, |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
910 |
const char *appName, |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
911 |
const char *archiveExt, |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
912 |
int includeCdRoms, |
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
913 |
int archivesFirst); |
1 | 914 |
|
915 |
||
508 | 916 |
/* Directory management stuff ... */ |
917 |
||
1 | 918 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
919 |
* \fn int PHYSFS_mkdir(const char *dirName) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
920 |
* \brief Create a directory. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
921 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
922 |
* This is specified in platform-independent notation in relation to the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
923 |
* write dir. All missing parent directories are also created if they |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
924 |
* don't exist. |
1 | 925 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
926 |
* So if you've got the write dir set to "C:\mygame\writedir" and call |
1 | 927 |
* PHYSFS_mkdir("downloads/maps") then the directories |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
928 |
* "C:\mygame\writedir\downloads" and "C:\mygame\writedir\downloads\maps" |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
929 |
* will be created if possible. If the creation of "maps" fails after we |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
930 |
* have successfully created "downloads", then the function leaves the |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
931 |
* created directory behind and reports failure. |
1 | 932 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
933 |
* \param dirName New dir to create. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
934 |
* \return nonzero on success, zero on error. Specifics of the error can be |
1 | 935 |
* gleaned from PHYSFS_getLastError(). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
936 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
937 |
* \sa PHYSFS_delete |
1 | 938 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
939 |
PHYSFS_DECL int PHYSFS_mkdir(const char *dirName); |
1 | 940 |
|
941 |
||
942 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
943 |
* \fn int PHYSFS_delete(const char *filename) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
944 |
* \brief Delete a file or directory. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
945 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
946 |
* (filename) is specified in platform-independent notation in relation to the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
947 |
* write dir. |
1 | 948 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
949 |
* A directory must be empty before this call can delete it. |
1 | 950 |
* |
137
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
951 |
* Deleting a symlink will remove the link, not what it points to, regardless |
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
952 |
* of whether you "permitSymLinks" or not. |
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
953 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
954 |
* So if you've got the write dir set to "C:\mygame\writedir" and call |
1 | 955 |
* PHYSFS_delete("downloads/maps/level1.map") then the file |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
956 |
* "C:\mygame\writedir\downloads\maps\level1.map" is removed from the |
1 | 957 |
* physical filesystem, if it exists and the operating system permits the |
958 |
* deletion. |
|
959 |
* |
|
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
960 |
* Note that on Unix systems, deleting a file may be successful, but the |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
961 |
* actual file won't be removed until all processes that have an open |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
962 |
* filehandle to it (including your program) close their handles. |
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
963 |
* |
137
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
964 |
* Chances are, the bits that make up the file still exist, they are just |
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
965 |
* made available to be written over at a later point. Don't consider this |
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
966 |
* a security method or anything. :) |
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
967 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
968 |
* \param filename Filename to delete. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
969 |
* \return nonzero on success, zero on error. Specifics of the error can be |
1 | 970 |
* gleaned from PHYSFS_getLastError(). |
971 |
*/ |
|
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
972 |
PHYSFS_DECL int PHYSFS_delete(const char *filename); |
1 | 973 |
|
974 |
||
975 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
976 |
* \fn const char *PHYSFS_getRealDir(const char *filename) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
977 |
* \brief Figure out where in the search path a file resides. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
978 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
979 |
* The file is specified in platform-independent notation. The returned |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
980 |
* filename will be the element of the search path where the file was found, |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
981 |
* which may be a directory, or an archive. Even if there are multiple |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
982 |
* matches in different parts of the search path, only the first one found |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
983 |
* is used, just like when opening a file. |
1 | 984 |
* |
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
985 |
* So, if you look for "maps/level1.map", and C:\\mygame is in your search |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
986 |
* path and C:\\mygame\\maps\\level1.map exists, then "C:\mygame" is returned. |
1 | 987 |
* |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
988 |
* If a any part of a match is a symbolic link, and you've not explicitly |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
989 |
* permitted symlinks, then it will be ignored, and the search for a match |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
990 |
* will continue. |
2
24ba671694af
Fixed typos, expanded documentation, added init and deinit functions, and
Ryan C. Gordon <icculus@icculus.org>
parents:
1
diff
changeset
|
991 |
* |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
992 |
* If you specify a fake directory that only exists as a mount point, it'll |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
993 |
* be associated with the first archive mounted there, even though that |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
994 |
* directory isn't necessarily contained in a real archive. |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
995 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
996 |
* \param filename file to look for. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
997 |
* \return READ ONLY string of element of search path containing the |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
998 |
* the file in question. NULL if not found. |
1 | 999 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1000 |
PHYSFS_DECL const char *PHYSFS_getRealDir(const char *filename); |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1001 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1002 |
|
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1003 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1004 |
* \fn char **PHYSFS_enumerateFiles(const char *dir) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1005 |
* \brief Get a file listing of a search path's directory. |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1006 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1007 |
* Matching directories are interpolated. That is, if "C:\mydir" is in the |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1008 |
* search path and contains a directory "savegames" that contains "x.sav", |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1009 |
* "y.sav", and "z.sav", and there is also a "C:\userdir" in the search path |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1010 |
* that has a "savegames" subdirectory with "w.sav", then the following code: |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1011 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1012 |
* \code |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1013 |
* char **rc = PHYSFS_enumerateFiles("savegames"); |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1014 |
* char **i; |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1015 |
* |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1016 |
* for (i = rc; *i != NULL; i++) |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1017 |
* printf(" * We've got [%s].\n", *i); |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1018 |
* |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1019 |
* PHYSFS_freeList(rc); |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1020 |
* \endcode |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1021 |
* |
1070
822d91dde8e8
Doxygen fixes (thanks, Patrick!)
Ryan C. Gordon <icculus@icculus.org>
parents:
1069
diff
changeset
|
1022 |
* \...will print: |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1023 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1024 |
* \verbatim |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1025 |
* We've got [x.sav]. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1026 |
* We've got [y.sav]. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1027 |
* We've got [z.sav]. |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1028 |
* We've got [w.sav].\endverbatim |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1029 |
* |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
1030 |
* Feel free to sort the list however you like. We only promise there will |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
1031 |
* be no duplicates, but not what order the final list will come back in. |
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
1032 |
* |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1033 |
* Don't forget to call PHYSFS_freeList() with the return value from this |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1034 |
* function when you are done with it. |
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1035 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1036 |
* \param dir directory in platform-independent notation to enumerate. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1037 |
* \return Null-terminated array of null-terminated strings. |
687
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
1038 |
* |
f76dffa43fa2
More mountpoint work and other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
683
diff
changeset
|
1039 |
* \sa PHYSFS_enumerateFilesCallback |
3
0dd785321345
Boatloads of updates to the spec.
Ryan C. Gordon <icculus@icculus.org>
parents:
2
diff
changeset
|
1040 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1041 |
PHYSFS_DECL char **PHYSFS_enumerateFiles(const char *dir); |
1 | 1042 |
|
1043 |
||
1044 |
/** |
|
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1045 |
* \fn int PHYSFS_exists(const char *fname) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1046 |
* \brief Determine if a file exists in the search path. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1047 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1048 |
* Reports true if there is an entry anywhere in the search path by the |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1049 |
* name of (fname). |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1050 |
* |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1051 |
* Note that entries that are symlinks are ignored if |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1052 |
* PHYSFS_permitSymbolicLinks(1) hasn't been called, so you |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1053 |
* might end up further down in the search path than expected. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1054 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1055 |
* \param fname filename in platform-independent notation. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1056 |
* \return non-zero if filename exists. zero otherwise. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1057 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1058 |
* \sa PHYSFS_isDirectory |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1059 |
* \sa PHYSFS_isSymbolicLink |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1060 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1061 |
PHYSFS_DECL int PHYSFS_exists(const char *fname); |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1062 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1063 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1064 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1065 |
* \fn int PHYSFS_isDirectory(const char *fname) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1066 |
* \brief Determine if a file in the search path is really a directory. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1067 |
* |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1068 |
* Determine if the first occurence of (fname) in the search path is |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1069 |
* really a directory entry. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1070 |
* |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1071 |
* Note that entries that are symlinks are ignored if |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1072 |
* PHYSFS_permitSymbolicLinks(1) hasn't been called, so you |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1073 |
* might end up further down in the search path than expected. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1074 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1075 |
* \param fname filename in platform-independent notation. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1076 |
* \return non-zero if filename exists and is a directory. zero otherwise. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1077 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1078 |
* \sa PHYSFS_exists |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1079 |
* \sa PHYSFS_isSymbolicLink |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1080 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1081 |
PHYSFS_DECL int PHYSFS_isDirectory(const char *fname); |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1082 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1083 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1084 |
/** |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1085 |
* \fn int PHYSFS_isSymbolicLink(const char *fname) |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1086 |
* \brief Determine if a file in the search path is really a symbolic link. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1087 |
* |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1088 |
* Determine if the first occurence of (fname) in the search path is |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1089 |
* really a symbolic link. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1090 |
* |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1091 |
* Note that entries that are symlinks are ignored if |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1092 |
* PHYSFS_permitSymbolicLinks(1) hasn't been called, and as such, |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1093 |
* this function will always return 0 in that case. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1094 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1095 |
* \param fname filename in platform-independent notation. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1096 |
* \return non-zero if filename exists and is a symlink. zero otherwise. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1097 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1098 |
* \sa PHYSFS_exists |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1099 |
* \sa PHYSFS_isDirectory |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1100 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1101 |
PHYSFS_DECL int PHYSFS_isSymbolicLink(const char *fname); |
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1102 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1103 |
|
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1104 |
/** |
508 | 1105 |
* \fn PHYSFS_sint64 PHYSFS_getLastModTime(const char *filename) |
1106 |
* \brief Get the last modification time of a file. |
|
1107 |
* |
|
1108 |
* The modtime is returned as a number of seconds since the epoch |
|
1109 |
* (Jan 1, 1970). The exact derivation and accuracy of this time depends on |
|
1110 |
* the particular archiver. If there is no reasonable way to obtain this |
|
1111 |
* information for a particular archiver, or there was some sort of error, |
|
1075
abbb759c1398
Back out Doxygen escaping stuff...doesn't actually work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1070
diff
changeset
|
1112 |
* this function returns (-1). |
508 | 1113 |
* |
1114 |
* \param filename filename to check, in platform-independent notation. |
|
1075
abbb759c1398
Back out Doxygen escaping stuff...doesn't actually work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1070
diff
changeset
|
1115 |
* \return last modified time of the file. -1 if it can't be determined. |
1091
0a103bf74f1c
Added a see-also to the docs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1086
diff
changeset
|
1116 |
* |
0a103bf74f1c
Added a see-also to the docs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1086
diff
changeset
|
1117 |
* \sa PHYSFS_Stat |
508 | 1118 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1119 |
PHYSFS_DECL PHYSFS_sint64 PHYSFS_getLastModTime(const char *filename); |
508 | 1120 |
|
1121 |
||
1122 |
/* i/o stuff... */ |
|
1123 |
||
1124 |
/** |
|
654
c0ae01de361d
Changed PHYSFS_file to PHYSFS_File to match rest of API's naming
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
1125 |
* \fn PHYSFS_File *PHYSFS_openWrite(const char *filename) |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1126 |
* \brief Open a file for writing. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1127 |
* |
1 | 1128 |
* Open a file for writing, in platform-independent notation and in relation |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
1129 |
* to the write dir as the root of the writable filesystem. The specified |
1 | 1130 |
* file is created if it doesn't exist. If it does exist, it is truncated to |
1131 |
* zero bytes, and the writing offset is set to the start. |
|
1132 |
* |
|
15
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1133 |
* Note that entries that are symlinks are ignored if |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1134 |
* PHYSFS_permitSymbolicLinks(1) hasn't been called, and opening a |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1135 |
* symlink with this function will fail in such a case. |
418eacc97ac8
Tons of updates. Mostly implemented. Mostly compiling.
Ryan C. Gordon <icculus@icculus.org>
parents:
8
diff
changeset
|
1136 |
* |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1137 |
* \param filename File to open. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1138 |
* \return A valid PhysicsFS filehandle on success, NULL on error. Specifics |
1 | 1139 |
* of the error can be gleaned from PHYSFS_getLastError(). |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1140 |
* |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1141 |
* \sa PHYSFS_openRead |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1142 |
* \sa PHYSFS_openAppend |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1143 |
* \sa PHYSFS_write |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1144 |
* \sa PHYSFS_close |
1 | 1145 |
*/ |
1024
199e38498938
Renamed __EXPORT__ to PHYSFS_DECL.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
1146 |
PHYSFS_DECL PHYSFS_File *PHYSFS_openWrite(const char *filename); |
1 | 1147 |
|
1148 |
||
1149 |
/** |
|
654
c0ae01de361d
Changed PHYSFS_file to PHYSFS_File to match rest of API's naming
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
1150 |
* \fn PHYSFS_File *PHYSFS_openAppend(const char *filename) |
265
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1151 |
* \brief Open a file for appending. |
6187d310b2c0
Lots of tweaks and revisions for Doxygen support.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
1152 |
* |
1 | 1153 |
* Open a file for writing, in platform-independent notation and in relation |
6
3662cbc014ef
More updates, corrections, clarifications...
Ryan C. Gordon <icculus@icculus.org>
parents:
3
diff
changeset
|
1154 |
* to the write dir as the root of the writable filesystem. The specified |
1 | 1155 |
* file is created if it doesn't exist. If it does exist, the writing offset |
1156 |
* is set to the end of the file, so the first write will be the byte after |
|
|