- Timestamp:
- 10/03/08 12:03:22 (3 months ago)
- Location:
- Whitix/branches/keobject/include
- Files:
-
- 6 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/keobject/include/console.h
r964 r1053 20 20 #define CONSOLE_H 21 21 22 #include <device .h>22 #include <devices/device.h> 23 23 #include <typedefs.h> 24 24 #include <wait.h> … … 44 44 struct Console 45 45 { 46 struct KeDevice device; 46 47 int currX, currY, currColor; 47 48 WaitQueue waitQueue; -
Whitix/branches/keobject/include/fs/kfs.h
r964 r1053 23 23 struct KeFsDir dir; 24 24 void* file; 25 int (*followLink)( char* buffer, int size);25 int (*followLink)(struct KeFsEntry** dest, struct KeFsEntry* src); 26 26 }; 27 27 28 char name[0];28 char* name; 29 29 }; 30 30 -
Whitix/branches/keobject/include/fs/super.h
r853 r1053 27 27 #include <spinlock.h> 28 28 #include <typedefs.h> 29 #include <devices/sdevice.h> 29 30 30 31 struct VNode; -
Whitix/branches/keobject/include/fs/vfs.h
r963 r1053 25 25 26 26 #include <llist.h> 27 #include <sdevice.h>28 27 #include <typedefs.h> 29 28 #include <types.h> -
Whitix/branches/keobject/include/string.h
r608 r1053 45 45 #define ZeroMemory(p,sz) memset((char*)(p),(sz),0) 46 46 47 int sprintf(char* buf,const char* fmt,...);48 int vs printf(char* buf,const char* fmt,va_list args);47 int vsprintf(char* buf,const char* fmt, VaList args); 48 int vsnprintf(char* buf, int size, const char* fmt, VaList args); 49 49 int toupper(char c); 50 50 … … 62 62 } 63 63 64 char* vasprintf(const char* fmt, VaList args); 64 65 65 66 #endif -
Whitix/branches/keobject/include/types.h
r674 r1053 31 31 typedef long unsigned int time_t; 32 32 33 /* Limits */ 34 #define INT_MAX 0x7fffffffL 35 33 36 #endif