Subversion Repositories Kolibri OS

Rev

Rev 769 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 769 Rev 802
Line 4... Line 4...
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
macro kernel_export [name]{
7
macro kernel_export [name]{
8
forward
8
forward
9
;display `name,#13,#10
-
 
10
  if used name
9
  if used name
-
 
10
	if DEBUG
-
 
11
	display 'uses: ',`name,#13,#10
-
 
12
	end if
11
    extrn name
13
    extrn name
12
  end if
14
  end if
13
}
15
}
14
; all exported kernel functions and data
16
; all exported kernel functions and data
Line 17... Line 19...
17
kernel_export \
19
kernel_export \
18
	      RegService,\
20
	      RegService,\
19
	      GetService,\
21
	      GetService,\
20
	      ServiceHandler,\
22
	      ServiceHandler,\
21
	      AttachIntHandler,\
23
	      AttachIntHandler,\
-
 
24
	      GetIntHandler,\
22
	      FpuSave,\
25
	      FpuSave,\
23
	      FpuRestore,\
26
	      FpuRestore,\
24
	      ReservePortArea,\
27
	      ReservePortArea,\
25
	      Boot_Log,\
28
	      Boot_Log,\
26
\
29
\