diff --git a/src/sys/include/ubixos/kmod.h b/src/sys/include/ubixos/kmod.h index d436427..3cbca89 100644 --- a/src/sys/include/ubixos/kmod.h +++ b/src/sys/include/ubixos/kmod.h @@ -34,11 +34,20 @@ #define LD_START 0x1000000 +typedef struct kmod_struct { + struct kmod_struct *next; + struct kmod_struct *prev; + } kmod_t; + + uInt32 kmod_load(const char *); #endif /*** $Log$ + Revision 1.1 2004/09/20 07:33:10 reddawg + Start of kernel modules will make it much more flexable - These modules can be either in kernel threads or system services... + END ***/