diff options
Diffstat (limited to '')
| -rw-r--r-- | src/file.h | 12 |
1 files changed, 4 insertions, 8 deletions
| @@ -69,6 +69,9 @@ namespace Bu | |||
| 69 | WriteNew = 0x0E ///< Create a file (or truncate) for writing. | 69 | WriteNew = 0x0E ///< Create a file (or truncate) for writing. |
| 70 | /// Same as Write|Create|Truncate | 70 | /// Same as Write|Create|Truncate |
| 71 | }; | 71 | }; |
| 72 | |||
| 73 | virtual void setSize( long iSize ); | ||
| 74 | |||
| 72 | /** | 75 | /** |
| 73 | * Create a temp file and return its handle. The file is opened | 76 | * Create a temp file and return its handle. The file is opened |
| 74 | * Read/Write. | 77 | * Read/Write. |
| @@ -77,16 +80,9 @@ namespace Bu | |||
| 77 | * characters. | 80 | * characters. |
| 78 | *@returns (Bu::File) A file object representing your temp file. | 81 | *@returns (Bu::File) A file object representing your temp file. |
| 79 | */ | 82 | */ |
| 80 | #ifndef WIN32 | ||
| 81 | static Bu::File tempFile( Bu::FString &sName ); | 83 | static Bu::File tempFile( Bu::FString &sName ); |
| 82 | 84 | ||
| 83 | /** | 85 | #ifndef WIN32 |
| 84 | * Set the size of the file to (nSize). You can either grow or shrink | ||
| 85 | * the file. | ||
| 86 | *@param nSize (long) The new size of the file. | ||
| 87 | */ | ||
| 88 | void truncate( long nSize ); | ||
| 89 | |||
| 90 | /** | 86 | /** |
| 91 | * Change the file access permissions. | 87 | * Change the file access permissions. |
| 92 | *@param t (mode_t) The new file access permissions. | 88 | *@param t (mode_t) The new file access permissions. |
