Kernel - Oops, forgot to change the export definitions
authorJohn Hodge <[email protected]>
Tue, 19 Jul 2011 10:31:37 +0000 (18:31 +0800)
committerJohn Hodge <[email protected]>
Tue, 19 Jul 2011 10:31:37 +0000 (18:31 +0800)
Kernel/include/vfs_ext.h
Usermode/Applications/axwin2_src/WM/video.c

index 4fe8923..26feb37 100644 (file)
@@ -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
index 39ba1e5..7b3eb2f 100644 (file)
@@ -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)

UCC git Repository :: git.ucc.asn.au