diff options
author | François Tigeot <ftigeot@wolfpond.org> | 2012-02-05 18:33:57 +0100 |
---|---|---|
committer | François Tigeot <ftigeot@wolfpond.org> | 2012-02-05 21:42:34 +0100 |
commit | 32009128e4c77cfd6506ab50a5345776de8144e6 (patch) | |
tree | 7eddd1a24d0934c556107aeb61ed62911ab964d2 /sal/inc/osl | |
parent | 9a7f53cdcfb40820d7c7f29e2190fb1572611b91 (diff) |
Remove unused VolumeDevice functions and related code
Diffstat (limited to 'sal/inc/osl')
-rw-r--r-- | sal/inc/osl/file.h | 43 | ||||
-rw-r--r-- | sal/inc/osl/file.hxx | 28 |
2 files changed, 0 insertions, 71 deletions
diff --git a/sal/inc/osl/file.h b/sal/inc/osl/file.h index 3bcd877e78a8..2c2713b6da5c 100644 --- a/sal/inc/osl/file.h +++ b/sal/inc/osl/file.h @@ -467,47 +467,6 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_getFileStatus( typedef void *oslVolumeDeviceHandle; - -/** Unmount a volume device. - - Unmount the volume specified by the given oslVolumeDeviceHandle. - - @param Handle [in] - An oslVolumeDeviceHandle received by a call to osl_getVolumeInformation(). - - @return - osl_File_E_None on success<br> - - @todo - specify all error codes that may be returned - - @see osl_getVolumeInformation() -*/ - -SAL_DLLPUBLIC oslFileError SAL_CALL osl_unmountVolumeDevice( - oslVolumeDeviceHandle Handle ); - - -/** Automount a volume device. - - Automount the volume device specified by the given oslVolumeDeviceHandle. - - @param Handle [in] - An oslVolumeDeviceHandle received by a call to osl_getVolumeInformation(). - - @return - osl_File_E_None on success<br> - - @todo - specify all error codes that may be returned - - @see osl_getVolumeInformation() -*/ - -SAL_DLLPUBLIC oslFileError SAL_CALL osl_automountVolumeDevice( - oslVolumeDeviceHandle Handle ); - - /** Release a volume device handle. Releases the given oslVolumeDeviceHandle which was acquired by a call to @@ -575,8 +534,6 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_acquireVolumeDeviceHandle( osl_File_E_EOVERFLOW value too large for defined data type<br> @see osl_getVolumeInformation() - @see osl_automountVolumeDevice() - @see osl_unmountVolumeDevice() */ SAL_DLLPUBLIC oslFileError SAL_CALL osl_getVolumeDeviceMountPath( diff --git a/sal/inc/osl/file.hxx b/sal/inc/osl/file.hxx index d63126bea285..8c977508763e 100644 --- a/sal/inc/osl/file.hxx +++ b/sal/inc/osl/file.hxx @@ -388,34 +388,6 @@ public: return *this; } - /** Automount a volume device. - - @return - E_None on success - - @todo - specify all error codes that may be returned - */ - - inline RC automount() - { - return (RC)osl_automountVolumeDevice( _aHandle ); - } - - /** Unmount a volume device. - - @return - E_None on success - - @todo - specify all error codes that may be returned - */ - - inline RC unmount() - { - return (RC)osl_unmountVolumeDevice( _aHandle ); - } - /** Get the full qualified URL where a device is mounted to. @return |