Changeset d858a660 in mainline for uspace/lib/c/include


Ignore:
Timestamp:
2017-07-04T15:05:43Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9c2c7d2
Parents:
2456fd0
Message:

Fdisk should print volume labels.

Location:
uspace/lib/c/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/vol.h

    r2456fd0 rd858a660  
    3636#include <ipc/common.h>
    3737
     38#define VOL_LABEL_MAXLEN 63
     39
    3840typedef enum {
    3941        VOL_GET_PARTS = IPC_FIRST_USER_METHOD,
  • uspace/lib/c/include/types/vol.h

    r2456fd0 rd858a660  
    3737
    3838#include <async.h>
     39#include <ipc/vol.h>
    3940
    4041typedef enum {
     
    7172        /** Filesystem type */
    7273        vol_fstype_t fstype;
     74        /** Volume label */
     75        char label[VOL_LABEL_MAXLEN + 1];
    7376} vol_part_info_t;
    7477
Note: See TracChangeset for help on using the changeset viewer.