1 /* 2 * Copyright 2011, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Alexander von Gluck IV, kallisti5@unixzen.com 7 */ 8 #ifndef RADEON_HD_BIOS_H 9 #define RADEON_HD_BIOS_H 10 11 12 #include <stdint.h> 13 14 // AtomBios includes 15 extern "C" { 16 #include "CD_Common_Types.h" 17 #include "CD_Definitions.h" 18 #include "atombios.h" 19 } 20 21 22 status_t AtomParser(void *parameterSpace, uint8_t index, 23 void *handle, void *biosBase); 24 25 26 #endif /* RADEON_HD_BIOS_H */ 27