summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/haleagle/ppc/fwstatus.h
blob: fd09e6363962387c36ab72138f65a9aab487e6b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _FWSTATUS_H_
#define _FWSTATUS_H_

typedef enum _status_type {
    stat_ok         = 0,
    stat_warning    = 1,
    stat_exist      = 2,
    stat_error      = 3,
    stat_badptr     = 4,
    stat_notexist   = 5,
    stat_noentry    = 6,
    stat_checksum   = 7,
    stat_badlength  = 8,
    stat_last       = 0x40
    } STATUS_TYPE;

#endif /* _FWSTATUS_H_ */