Changes in uspace/lib/device/include/ipc/vol.h [5fc8244:4285f384] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/device/include/ipc/vol.h
r5fc8244 r4285f384 1 1 /* 2 * Copyright (c) 20 15 Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib cipc29 /** @addtogroup libdevice 30 30 * @{ 31 31 */ 32 32 33 #ifndef _LIBC_IPC_VOL_H_34 #define _LIBC_IPC_VOL_H_33 #ifndef LIBDEVICE_IPC_VOL_H 34 #define LIBDEVICE_IPC_VOL_H 35 35 36 36 #include <ipc/common.h> … … 54 54 } vol_request_t; 55 55 56 /** Volume eject flags */ 57 typedef enum { 58 /** No flags */ 59 vef_none = 0x0, 60 /** Physically eject medium */ 61 vef_physical = 0x1 62 } vol_eject_flags_t; 63 56 64 #endif 57 65
Note:
See TracChangeset
for help on using the changeset viewer.