Changeset 0ecfc62 in mainline for uspace/lib/c/include/types/label.h


Ignore:
Timestamp:
2015-10-09T18:11:08Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3a43785
Parents:
372df8f
Message:

Information structures need updating to new model.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/types/label.h

    r372df8f r0ecfc62  
    3838#include <types/uuid.h>
    3939
    40 /** Disk contents */
     40/** Partition contents */
    4141typedef enum {
    42         /** Disk is considered empty */
    43         dc_empty = 0,
    44         /** Disk contains a recognized label */
    45         dc_label,
    46         /** Disk contains a recognized filesystem */
    47         dc_fs,
    48         /** Disk contains unrecognized data */
    49         dc_unknown
    50 } label_disk_cnt_t;
     42        /** Partition is considered empty */
     43        ptc_empty = 0,
     44        /** Partition contains a recognized filesystem */
     45        ptc_fs,
     46        /** Partition contains unrecognized data */
     47        ptc_unknown
     48} label_part_cnt_t;
    5149
    5250/** Disk label type */
Note: See TracChangeset for help on using the changeset viewer.