Subversion Repositories freemyipod

Rev

Rev 100 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 100 Rev 110
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
#include <stdint.h>
28
#include <stdint.h>
29
#include <stdarg.h>
29
#include <stdarg.h>
30
#include <stdbool.h>
30
#include <stdbool.h>
31
 
-
 
32
 
-
 
33
#ifndef PANIC_SEVERITY_DEFINED
-
 
34
#define PANIC_SEVERITY_DEFINED
-
 
35
enum panic_severity
31
#include "../panic.h"
36
{
-
 
37
    PANIC_KILLTHREAD = 0,
-
 
38
    PANIC_KILLUSERTHREADS = 1,
-
 
39
    PANIC_FATAL = 2
-
 
40
};
-
 
41
#endif
-
 
42
 
32
 
43
 
33
 
44
/* increase this every time the api struct changes */
34
/* increase this every time the api struct changes */
45
#define EMBIOS_API_VERSION 0
35
#define EMBIOS_API_VERSION 0
46
 
36