VirtualBox

source: vbox/trunk/include/iprt/file.h@ 7176

Last change on this file since 7176 was 6992, checked in by vboxsync, 17 years ago

Restrict RTFILE_O_NOT_CONTENT_INDEXED to file creation.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 22.7 KB
Line 
1/** @file
2 * innotek Portable Runtime - File I/O.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_file_h
27#define ___iprt_file_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#ifdef IN_RING3
32# include <iprt/fs.h>
33#endif
34
35/** @todo rename this file to iprt/file.h */
36
37__BEGIN_DECLS
38
39/** @defgroup grp_rt_fileio RTFile - File I/O
40 * @ingroup grp_rt
41 * @{
42 */
43
44/** Platform specific text line break.
45 * @deprecated Use text I/O streams and '\\n'. See iprt/stream.h. */
46#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
47# define RTFILE_LINEFEED "\r\n"
48#else
49# define RTFILE_LINEFEED "\n"
50#endif
51
52
53#ifdef IN_RING3
54
55/** @name Open flags
56 * @{ */
57/** Open the file with read access. */
58#define RTFILE_O_READ 0x00000001
59/** Open the file with write access. */
60#define RTFILE_O_WRITE 0x00000002
61/** Open the file with read & write access. */
62#define RTFILE_O_READWRITE 0x00000003
63/** The file access mask.
64 * @remark The value 0 is invalid. */
65#define RTFILE_O_ACCESS_MASK 0x00000003
66
67/** Sharing mode: deny none (the default mode). */
68#define RTFILE_O_DENY_NONE 0x00000000
69/** Sharing mode: deny read. */
70#define RTFILE_O_DENY_READ 0x00000010
71/** Sharing mode: deny write. */
72#define RTFILE_O_DENY_WRITE 0x00000020
73/** Sharing mode: deny read and write. */
74#define RTFILE_O_DENY_READWRITE 0x00000030
75/** Sharing mode: deny all. */
76#define RTFILE_O_DENY_ALL RTFILE_O_DENY_READWRITE
77/** Sharing mode: do NOT deny delete (NT).
78 * @remark This might not be implemented on all platforms,
79 * and will be defaulted & ignored on those.
80 */
81#define RTFILE_O_DENY_NOT_DELETE 0x00000040
82/** Sharing mode mask. */
83#define RTFILE_O_DENY_MASK 0x00000070
84
85/** Action: Open an existing file (the default action). */
86#define RTFILE_O_OPEN 0x00000000
87/** Action: Create a new file or open an existing one. */
88#define RTFILE_O_OPEN_CREATE 0x00000100
89/** Action: Create a new a file. */
90#define RTFILE_O_CREATE 0x00000200
91/** Action: Create a new file or replace an existing one. */
92#define RTFILE_O_CREATE_REPLACE 0x00000300
93/** Action mask. */
94#define RTFILE_O_ACTION_MASK 0x00000300
95
96/** Turns off indexing of files on Windows hosts, *CREATE* only.
97 * @remark This might not be implemented on all platforms,
98 * and will be ignored on those.
99 */
100#define RTFILE_O_NOT_CONTENT_INDEXED 0x00000800
101/** Truncate the file.
102 * @remark This will not truncate files opened for read-only.
103 * @remark The trunction doesn't have to be atomically, so anyone
104 * else opening the file may be racing us. The caller is
105 * responsible for not causing this race. */
106#define RTFILE_O_TRUNCATE 0x00001000
107/** Make the handle inheritable on RTProcessCreate(/exec). */
108#define RTFILE_O_INHERIT 0x00002000
109/** Open file in non-blocking mode - non-portable.
110 * @remark This flag may not be supported on all platforms, in which
111 * case it's considered an invalid parameter.
112 */
113#define RTFILE_O_NON_BLOCK 0x00004000
114/** Write through directly to disk. Workaround to avoid iSCSI
115 * initiator deadlocks on Windows hosts.
116 * @remark This might not be implemented on all platforms,
117 * and will be ignored on those.
118 */
119#define RTFILE_O_WRITE_THROUGH 0x00008000
120/** Mask of all valid flags.
121 * @remark This doesn't validate the access mode properly.
122 */
123#define RTFILE_O_VALID_MASK 0x0000FB73
124
125/** @} */
126
127
128/**
129 * Force the use of open flags for all files opened after the setting is
130 * changed. The caller is responsible for not causing races with RTFileOpen().
131 *
132 * @returns iprt status code.
133 * @param fOpenForAccess Access mode to which the set/mask settings apply.
134 * @param fSet Open flags to be forced set.
135 * @param fMask Open flags to be masked out.
136 */
137RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
138
139/**
140 * Open a file.
141 *
142 * @returns iprt status code.
143 * @param pFile Where to store the handle to the opened file.
144 * @param pszFilename Path to the file which is to be opened. (UTF-8)
145 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
146 */
147RTR3DECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, unsigned fOpen);
148
149/**
150 * Close a file opened by RTFileOpen().
151 *
152 * @returns iprt status code.
153 * @param File The file handle to close.
154 */
155RTR3DECL(int) RTFileClose(RTFILE File);
156
157/**
158 * Delete a file.
159 *
160 * @returns iprt status code.
161 * @param pszFilename Path to the file which is to be deleted. (UTF-8)
162 * @todo This is a RTPath api!
163 */
164RTR3DECL(int) RTFileDelete(const char *pszFilename);
165
166/** @name Seek flags.
167 * @{ */
168/** Seek from the start of the file. */
169#define RTFILE_SEEK_BEGIN 0x00
170/** Seek from the current file position. */
171#define RTFILE_SEEK_CURRENT 0x01
172/** Seek from the end of the file. */
173#define RTFILE_SEEK_END 0x02
174/** @internal */
175#define RTFILE_SEEK_FIRST RTFILE_SEEK_BEGIN
176/** @internal */
177#define RTFILE_SEEK_LAST RTFILE_SEEK_END
178/** @} */
179
180
181/**
182 * Changes the read & write position in a file.
183 *
184 * @returns iprt status code.
185 * @param File Handle to the file.
186 * @param offSeek Offset to seek.
187 * @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
188 * @param poffActual Where to store the new file position.
189 * NULL is allowed.
190 */
191RTR3DECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
192
193/**
194 * Read bytes from a file.
195 *
196 * @returns iprt status code.
197 * @param File Handle to the file.
198 * @param pvBuf Where to put the bytes we read.
199 * @param cbToRead How much to read.
200 * @param *pcbRead How much we actually read .
201 * If NULL an error will be returned for a partial read.
202 */
203RTR3DECL(int) RTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, size_t *pcbRead);
204
205/**
206 * Read bytes from a file at a given offset.
207 * This function may modify the file position.
208 *
209 * @returns iprt status code.
210 * @param File Handle to the file.
211 * @param off Where to read.
212 * @param pvBuf Where to put the bytes we read.
213 * @param cbToRead How much to read.
214 * @param *pcbRead How much we actually read .
215 * If NULL an error will be returned for a partial read.
216 */
217RTR3DECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
218
219/**
220 * Write bytes to a file.
221 *
222 * @returns iprt status code.
223 * @param File Handle to the file.
224 * @param pvBuf What to write.
225 * @param cbToWrite How much to write.
226 * @param *pcbWritten How much we actually wrote.
227 * If NULL an error will be returned for a partial write.
228 */
229RTR3DECL(int) RTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
230
231/**
232 * Write bytes to a file at a given offset.
233 * This function may modify the file position.
234 *
235 * @returns iprt status code.
236 * @param File Handle to the file.
237 * @param off Where to write.
238 * @param pvBuf What to write.
239 * @param cbToWrite How much to write.
240 * @param *pcbWritten How much we actually wrote.
241 * If NULL an error will be returned for a partial write.
242 */
243RTR3DECL(int) RTFileWriteAt(RTFILE File, RTFOFF off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
244
245/**
246 * Flushes the buffers for the specified file.
247 *
248 * @returns iprt status code.
249 * @param File Handle to the file.
250 */
251RTR3DECL(int) RTFileFlush(RTFILE File);
252
253/**
254 * Set the size of the file.
255 *
256 * @returns iprt status code.
257 * @param File Handle to the file.
258 * @param cbSize The new file size.
259 */
260RTR3DECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize);
261
262/**
263 * Query the size of the file.
264 *
265 * @returns iprt status code.
266 * @param File Handle to the file.
267 * @param pcbSize Where to store the filesize.
268 */
269RTR3DECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize);
270
271/**
272 * Determine the maximum file size.
273 *
274 * @returns The max size of the file.
275 * -1 on failure, the file position is undefined.
276 * @param File Handle to the file.
277 * @see RTFileGetMaxSizeEx.
278 */
279RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
280
281/**
282 * Determine the maximum file size.
283 *
284 * @returns IPRT status code.
285 * @param File Handle to the file.
286 * @param pcbMax Where to store the max file size.
287 * @see RTFileGetMaxSize.
288 */
289RTR3DECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax);
290
291/**
292 * Determine the maximum file size depending on the file system the file is stored on.
293 *
294 * @returns The max size of the file.
295 * -1 on failure.
296 * @param File Handle to the file.
297 */
298RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
299
300/**
301 * Gets the current file position.
302 *
303 * @returns File offset.
304 * @returns ~0UUL on failure.
305 * @param File Handle to the file.
306 */
307RTDECL(uint64_t) RTFileTell(RTFILE File);
308
309/**
310 * Checks if the supplied handle is valid.
311 *
312 * @returns true if valid.
313 * @returns false if invalid.
314 * @param File The file handle
315 */
316RTR3DECL(bool) RTFileIsValid(RTFILE File);
317
318/**
319 * Copies a file.
320 *
321 * @returns VERR_ALREADY_EXISTS if the destination file exists.
322 * @returns VBox Status code.
323 *
324 * @param pszSrc The path to the source file.
325 * @param pszDst The path to the destination file.
326 * This file will be created.
327 */
328RTDECL(int) RTFileCopy(const char *pszSrc, const char *pszDst);
329
330/**
331 * Copies a file given the handles to both files.
332 *
333 * @returns VBox Status code.
334 *
335 * @param FileSrc The source file. The file position is unaltered.
336 * @param FileDst The destination file.
337 * On successful returns the file position is at the end of the file.
338 * On failures the file position and size is undefined.
339 */
340RTDECL(int) RTFileCopyByHandles(RTFILE FileSrc, RTFILE FileDst);
341
342/**
343 * Copies a file.
344 *
345 * @returns VERR_ALREADY_EXISTS if the destination file exists.
346 * @returns VBox Status code.
347 *
348 * @param pszSrc The path to the source file.
349 * @param pszDst The path to the destination file.
350 * This file will be created.
351 * @param pfnProgress Pointer to callback function for reporting progress.
352 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
353 */
354RTDECL(int) RTFileCopyEx(const char *pszSrc, const char *pszDst, PFNRTPROGRESS pfnProgress, void *pvUser);
355
356/**
357 * Copies a file given the handles to both files and
358 * provide progress callbacks.
359 *
360 * @returns IPRT status code.
361 *
362 * @param FileSrc The source file. The file position is unaltered.
363 * @param FileDst The destination file.
364 * On successful returns the file position is at the end of the file.
365 * On failures the file position and size is undefined.
366 * @param pfnProgress Pointer to callback function for reporting progress.
367 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
368 */
369RTDECL(int) RTFileCopyByHandlesEx(RTFILE FileSrc, RTFILE FileDst, PFNRTPROGRESS pfnProgress, void *pvUser);
370
371/**
372 * Renames a file.
373 *
374 * Identical to RTPathRename except that it will ensure that the source is not a directory.
375 *
376 * @returns IPRT status code.
377 * @returns VERR_ALREADY_EXISTS if the destination file exists.
378 *
379 * @param pszSrc The path to the source file.
380 * @param pszDst The path to the destination file.
381 * This file will be created.
382 * @param fRename See RTPathRename.
383 */
384RTDECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename);
385
386
387/** @name RTFileMove flags (bit masks).
388 * @{ */
389/** Replace destination file if present. */
390#define RTFILEMOVE_FLAGS_REPLACE 0x1
391/** @} */
392
393/**
394 * Moves a file.
395 *
396 * RTFileMove differs from RTFileRename in that it works across volumes.
397 *
398 * @returns IPRT status code.
399 * @returns VERR_ALREADY_EXISTS if the destination file exists.
400 *
401 * @param pszSrc The path to the source file.
402 * @param pszDst The path to the destination file.
403 * This file will be created.
404 * @param fMove A combination of the RTFILEMOVE_* flags.
405 */
406RTDECL(int) RTFileMove(const char *pszSrc, const char *pszDst, unsigned fMove);
407
408
409/** @page pg_rt_filelock RT File locking API description
410 *
411 * File locking general rules:
412 *
413 * Region to lock or unlock can be located beyond the end of file, this can be used for
414 * growing files.
415 * Read (or Shared) locks can be acquired held by an unlimited number of processes at the
416 * same time, but a Write (or Exclusive) lock can only be acquired by one process, and
417 * cannot coexist with a Shared lock. To acquire a Read lock, a process must wait until
418 * there are no processes holding any Write locks. To acquire a Write lock, a process must
419 * wait until there are no processes holding either kind of lock.
420 * By default, RTFileLock and RTFileChangeLock calls returns error immediately if the lock
421 * can't be acquired due to conflict with other locks, however they can be called in wait mode.
422 *
423 * Differences in implementation:
424 *
425 * Win32, OS/2: Locking is mandatory, since locks are enforced by the operating system.
426 * I.e. when file region is locked in Read mode, any write in it will fail; in case of Write
427 * lock - region can be readed and writed only by lock's owner.
428 *
429 * Win32: File size change (RTFileSetSize) is not controlled by locking at all (!) in the
430 * operation system. Also see comments to RTFileChangeLock API call.
431 *
432 * Linux/Posix: By default locks in Unixes are advisory. This means that cooperating processes
433 * may use locks to coordonate access to a file between themselves, but programs are also free
434 * to ignore locks and access the file in any way they choose to.
435 *
436 * Additional reading:
437 * http://en.wikipedia.org/wiki/File_locking
438 * http://unixhelp.ed.ac.uk/CGI/man-cgi?fcntl+2
439 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/lockfileex.asp
440 */
441
442/** @name Lock flags (bit masks).
443 * @{ */
444/** Read access, can be shared with others. */
445#define RTFILE_LOCK_READ 0x00
446/** Write access, one at a time. */
447#define RTFILE_LOCK_WRITE 0x01
448/** Don't wait for other locks to be released. */
449#define RTFILE_LOCK_IMMEDIATELY 0x00
450/** Wait till conflicting locks have been released. */
451#define RTFILE_LOCK_WAIT 0x02
452/** Valid flags mask */
453#define RTFILE_LOCK_MASK 0x03
454/** @} */
455
456
457/**
458 * Locks a region of file for read (shared) or write (exclusive) access.
459 *
460 * @returns iprt status code.
461 * @returns VERR_FILE_LOCK_VIOLATION if lock can't be acquired.
462 * @param File Handle to the file.
463 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
464 * @param offLock Offset of lock start.
465 * @param cbLock Length of region to lock, may overlap the end of file.
466 */
467RTR3DECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
468
469/**
470 * Changes a lock type from read to write or from write to read.
471 * The region to type change must correspond exactly to an existing locked region.
472 * If change can't be done due to locking conflict and non-blocking mode is used, error is
473 * returned and lock keeps its state (see next warning).
474 *
475 * WARNING: win32 implementation of this call is not atomic, it transforms to a pair of
476 * calls RTFileUnlock and RTFileLock. Potentially the previously acquired lock can be
477 * lost, i.e. function is called in non-blocking mode, previous lock is freed, new lock can't
478 * be acquired, and old lock (previous state) can't be acquired back too. This situation
479 * may occurs _only_ if the other process is acquiring a _write_ lock in blocking mode or
480 * in race condition with the current call.
481 * In this very bad case special error code VERR_FILE_LOCK_LOST will be returned.
482 *
483 * @returns iprt status code.
484 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
485 * @returns VERR_FILE_LOCK_VIOLATION if lock type can't be changed, lock remains its type.
486 * @returns VERR_FILE_LOCK_LOST if lock was lost, we haven't this lock anymore :(
487 * @param File Handle to the file.
488 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
489 * @param offLock Offset of lock start.
490 * @param cbLock Length of region to lock, may overlap the end of file.
491 */
492RTR3DECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
493
494/**
495 * Unlocks previously locked region of file.
496 * The region to unlock must correspond exactly to an existing locked region.
497 *
498 * @returns iprt status code.
499 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
500 * @param File Handle to the file.
501 * @param offLock Offset of lock start.
502 * @param cbLock Length of region to unlock, may overlap the end of file.
503 */
504RTR3DECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock);
505
506
507/**
508 * Query information about an open file.
509 *
510 * @returns iprt status code.
511 *
512 * @param File Handle to the file.
513 * @param pObjInfo Object information structure to be filled on successful return.
514 * @param enmAdditionalAttribs Which set of additional attributes to request.
515 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
516 */
517RTR3DECL(int) RTFileQueryInfo(RTFILE File, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
518
519/**
520 * Changes one or more of the timestamps associated of file system object.
521 *
522 * @returns iprt status code.
523 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS.
524 *
525 * @param File Handle to the file.
526 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
527 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
528 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
529 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
530 *
531 * @remark The file system might not implement all these time attributes,
532 * the API will ignore the ones which aren't supported.
533 *
534 * @remark The file system might not implement the time resolution
535 * employed by this interface, the time will be chopped to fit.
536 *
537 * @remark The file system may update the change time even if it's
538 * not specified.
539 *
540 * @remark POSIX can only set Access & Modification and will always set both.
541 */
542RTR3DECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
543 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
544
545/**
546 * Gets one or more of the timestamps associated of file system object.
547 *
548 * @returns iprt status code.
549 * @param File Handle to the file.
550 * @param pAccessTime Where to store the access time. NULL is ok.
551 * @param pModificationTime Where to store the modifcation time. NULL is ok.
552 * @param pChangeTime Where to store the change time. NULL is ok.
553 * @param pBirthTime Where to store the time of birth. NULL is ok.
554 *
555 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileSetTimes().
556 */
557RTR3DECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
558 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
559
560/**
561 * Changes the mode flags of an open file.
562 *
563 * The API requires at least one of the mode flag sets (Unix/Dos) to
564 * be set. The type is ignored.
565 *
566 * @returns iprt status code.
567 * @param File Handle to the file.
568 * @param fMode The new file mode, see @ref grp_rt_fs for details.
569 */
570RTR3DECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode);
571
572/**
573 * Gets the mode flags of an open file.
574 *
575 * @returns iprt status code.
576 * @param File Handle to the file.
577 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
578 *
579 * @remark This is wrapper around RTFileQueryInfo()
580 * and exists to complement RTFileSetMode().
581 */
582RTR3DECL(int) RTFileGetMode(RTFILE File, uint32_t *pfMode);
583
584/**
585 * Changes the owner and/or group of an open file.
586 *
587 * @returns iprt status code.
588 * @param File Handle to the file.
589 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
590 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
591 */
592RTR3DECL(int) RTFileSetOwner(RTFILE File, uint32_t uid, uint32_t gid);
593
594/**
595 * Gets the owner and/or group of an open file.
596 *
597 * @returns iprt status code.
598 * @param File Handle to the file.
599 * @param pUid Where to store the owner user id. NULL is ok.
600 * @param pGid Where to store the group id. NULL is ok.
601 *
602 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileGetOwner().
603 */
604RTR3DECL(int) RTFileGetOwner(RTFILE File, uint32_t *pUid, uint32_t *pGid);
605
606/**
607 * Executes an IOCTL on a file descriptor.
608 *
609 * This function is currently only available in L4 and posix environments.
610 * Attemps at calling it from code shared with any other platforms will break things!
611 *
612 * The rational for defining this API is to simplify L4 porting of audio drivers,
613 * and to remove some of the assumptions on RTFILE being a file descriptor on
614 * platforms using the posix file implementation.
615 *
616 * @returns iprt status code.
617 * @param File Handle to the file.
618 * @param iRequest IOCTL request to carry out.
619 * @param pvData IOCTL data.
620 * @param cbData Size of the IOCTL data.
621 * @param piRet Return value of the IOCTL request.
622 */
623RTR3DECL(int) RTFileIoCtl(RTFILE File, int iRequest, void *pvData, unsigned cbData, int *piRet);
624
625#endif /* IN_RING3 */
626
627/** @} */
628
629__END_DECLS
630
631#endif
632
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette