Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/libsaio/internal_modules.h

1
2
3#ifndef __INTERNAL_MODULES_H
4#define __INTERNAL_MODULES_H
5
6
7
8static inline void load_all_internal_modules()
9{
10 // HOW TO: the procedure is quite simple but not automatic yet,
11
12 // to embed a module just drag/copy the content your module folder (*.c,*.h, etc...), but DO NOT COPY THE MAKEFILE.
13 // into libsaio folder, edit the libsaio makefile to build the files that you just added,
14 // and add here some code to start the module,
15
16 // ex. :
17
18 //extern void ACPICodec_start();
19 //ACPICodec_start();
20
21 //extern void SMBiosGetters_start();
22 //SMBiosGetters_start();
23
24 //extern void GUI_start();
25 //GUI_start();
26
27 // Done !!!
28
29 // ps: i swear the next version will be more simple
30}
31
32#endif /* __INTERNAL_MODULES_H */

Archive Download this file

Revision: 1601