Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8057 Boppan 1
Create new library wrapper
2
 
3
1. Redefine lib_name and lib_name_str in __lib__.inc
4
2. Create file for each symbol, basing on sample_symbol.asm and for each:
5
2.1. Redefine fun to *your_symbol_name*
6
2.2. Redefine fun_name to '*your_symbol_name*' (with quotes, this is ASCII string, no trailing zero need)
7
3. Change make.bat as appropriate
8
 
9
ACHTUNG: lib_name need to be unique in project, this is why I started it with "@" and put "." into.
10
ACHTUNG: lib_name_str must be at least 5 symbols long, if is not, fix this adding padding to the path.
11
 
12
Now you can create header file and declare extern variables pointers-to-functions, and then link your app with -llibname (put .a file in lib folder).
13
For examples of such header files, look at include/kos/inputbox.h, include/kos/console.h and include/kos/http.h. IMO, first one is the simplest.