From: John Hodge Date: Tue, 19 Jul 2011 10:31:37 +0000 (+0800) Subject: Kernel - Oops, forgot to change the export definitions X-Git-Tag: rel0.10~32 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=bd2f2872dd2c125d9200a0465cdeddaf8794e31f;p=tpg%2Facess2.git Kernel - Oops, forgot to change the export definitions --- diff --git a/Kernel/include/vfs_ext.h b/Kernel/include/vfs_ext.h index 4fe89233..26feb378 100644 --- a/Kernel/include/vfs_ext.h +++ b/Kernel/include/vfs_ext.h @@ -314,7 +314,7 @@ extern int VFS_Select(int MaxHandle, fd_set *ReadHandles, fd_set *WriteHandles, * \param FD File descriptor to load from * \param Offset Start of region */ -extern void *VFS_MMap(int *ErrNo, void *DestHint, size_t Length, int Protection, int Flags, int FD, Uint64 Offset); +extern void *VFS_MMap(void *DestHint, size_t Length, int Protection, int Flags, int FD, Uint64 Offset); /** * \brief Unmap memory allocated by VFS_MMap @@ -322,5 +322,5 @@ extern void *VFS_MMap(int *ErrNo, void *DestHint, size_t Length, int Protection, * \param Addr Address of data to unmap * \param Length Length of data */ -extern int VFS_MUnmap(int *ErrNo, void *Addr, size_t Length); +extern int VFS_MUnmap(void *Addr, size_t Length); #endif diff --git a/Usermode/Applications/axwin2_src/WM/video.c b/Usermode/Applications/axwin2_src/WM/video.c index 39ba1e51..7b3eb2fb 100644 --- a/Usermode/Applications/axwin2_src/WM/video.c +++ b/Usermode/Applications/axwin2_src/WM/video.c @@ -14,6 +14,8 @@ void Video_FillRect(short X, short Y, short W, short H, uint32_t Color); void Video_DrawRect(short X, short Y, short W, short H, uint32_t Color); // === GLOBALS === + int giVideo_CursorX; + int giVideo_CursorY; // === CODE === void Video_Setup(void)