From: Lawrence S. <ljs...@us...> - 2015-05-19 17:14:03
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 51634bdb6cfecfe02ddd778edef2cdbc3f8f7e7e (commit) via 906093318e8550791d6165f348022a390dd459ff (commit) from 04ccf5f4e299477d57dfc860da8b22bdcf847b15 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 51634bdb6cfecfe02ddd778edef2cdbc3f8f7e7e Author: Lawrence Sebald <ljs...@us...> Date: Tue May 19 13:13:30 2015 -0400 Add some missing headers to <kos.h>. commit 906093318e8550791d6165f348022a390dd459ff Author: Lawrence Sebald <ljs...@us...> Date: Tue May 19 13:10:06 2015 -0400 Add missing __END_DECLS to <dc/g1ata.h>. Without that, any C++ code that tried to include that header would probably break... Oops. ----------------------------------------------------------------------- Summary of changes: include/kos.h | 43 ++++++++++++++++++++--------- kernel/arch/dreamcast/include/dc/g1ata.h | 2 + 2 files changed, 31 insertions(+), 14 deletions(-) diff --git a/include/kos.h b/include/kos.h index cacc85a..4129df3 100644 --- a/include/kos.h +++ b/include/kos.h @@ -1,7 +1,7 @@ /* KallistiOS ##version## kos.h - (c)2001 Dan Potter + Copyright (C) 2001 Dan Potter */ @@ -50,6 +50,11 @@ __BEGIN_DECLS #include <kos/nmmgr.h> #include <kos/exports.h> #include <kos/dbgio.h> +#include <kos/blockdev.h> +#include <kos/dbglog.h> +#include <kos/elf.h> +#include <kos/fs_socket.h> +#include <kos/string.h> #include <arch/arch.h> #include <arch/cache.h> @@ -61,38 +66,48 @@ __BEGIN_DECLS #include <arch/stack.h> #ifdef _arch_dreamcast +# include <arch/gdb.h> # include <arch/mmu.h> +# include <arch/rtc.h> +# include <dc/asic.h> # include <dc/biosfont.h> # include <dc/cdrom.h> +# include <dc/fb_console.h> +# include <dc/flashrom.h> +# include <dc/fmath.h> # include <dc/fs_dcload.h> +# include <dc/fs_dclsocket.h> # include <dc/fs_iso9660.h> # include <dc/fs_vmu.h> -# include <dc/asic.h> +# include <dc/g1ata.h> +# include <dc/g2bus.h> # include <dc/maple.h> # include <dc/maple/controller.h> +# include <dc/maple/dreameye.h> # include <dc/maple/keyboard.h> # include <dc/maple/mouse.h> -# include <dc/maple/vmu.h> -# include <dc/maple/sip.h> # include <dc/maple/purupuru.h> -# include <dc/vmu_pkg.h> -# include <dc/spu.h> -# include <dc/pvr.h> -# include <dc/video.h> -# include <dc/fmath.h> +# include <dc/maple/sip.h> +# include <dc/maple/vmu.h> +# include <dc/matrix3d.h> # include <dc/matrix.h> -# include <dc/sound/stream.h> -# include <dc/sound/sfxmgr.h> +# include <dc/modem/modem.h> # include <dc/net/broadband_adapter.h> # include <dc/net/lan_adapter.h> -# include <dc/modem/modem.h> +# include <dc/pvr.h> +# include <dc/scif.h> +# include <dc/sd.h> +# include <dc/sound/stream.h> +# include <dc/sound/sfxmgr.h> +# include <dc/spu.h> # include <dc/sq.h> # include <dc/ubc.h> -# include <dc/flashrom.h> # include <dc/vblank.h> +# include <dc/vec3f.h> +# include <dc/video.h> +# include <dc/vmu_pkg.h> # include <dc/vmufs.h> -# include <dc/scif.h> #else /* _arch_dreamcast */ # error Invalid architecture or no architecture specified #endif diff --git a/kernel/arch/dreamcast/include/dc/g1ata.h b/kernel/arch/dreamcast/include/dc/g1ata.h index 43de376..36776cd 100644 --- a/kernel/arch/dreamcast/include/dc/g1ata.h +++ b/kernel/arch/dreamcast/include/dc/g1ata.h @@ -395,4 +395,6 @@ int g1_ata_init(void); */ void g1_ata_shutdown(void); +__END_DECLS + #endif /* __DC_G1ATA_H */ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |