Changeset bb5ce568 for set.h


Ignore:
Timestamp:
2012-06-07T22:41:17Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
e222c36
Parents:
aa88e50
Message:

s/ACC_SET_NOSAVE/SET_NOSAVE/.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • set.h

    raa88e50 rbb5ce568  
    4545typedef enum
    4646{
    47         SET_NOSAVE = 0x0001,
    48         SET_NULL_OK = 0x0100,
    49         SET_HIDDEN = 0x0200,
    50         SET_PASSWORD = 0x0400,
    51         SET_HIDDEN_DEFAULT = 0x0800,
     47        SET_NOSAVE = 0x0001,   /* Don't save this setting (i.e. stored elsewhere). */
     48        SET_NULL_OK = 0x0100,  /* set->value == NULL is allowed. */
     49        SET_HIDDEN = 0x0200,   /* Don't show up in setting lists. Mostly for internal storage. */
     50        SET_PASSWORD = 0x0400, /* Value shows up in settings list as "********". */
     51        SET_HIDDEN_DEFAULT = 0x0800, /* Hide unless changed from default. */
    5252} set_flags_t;
    5353
Note: See TracChangeset for help on using the changeset viewer.