mirror of
https://review.haiku-os.org/haiku
synced 2025-01-30 18:24:53 +01:00
ba61df6d0b
We don't do anything with it yet, though, so the BIOS will probably ignore us since we are supposed to poll for events. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15900 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
376 B
C
22 lines
376 B
C
#ifndef KERNEL_APM_H
|
|
#define KERNEL_APM_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
typedef struct apm_info {
|
|
uint16 version;
|
|
uint16 flags;
|
|
uint16 code32_segment_base;
|
|
uint32 code32_segment_offset;
|
|
uint16 code32_segment_length;
|
|
uint16 code16_segment_base;
|
|
uint16 code16_segment_length;
|
|
uint16 data_segment_base;
|
|
uint16 data_segment_length;
|
|
} apm_info;
|
|
|
|
|
|
#endif /* KERNEL_APM_H */
|