Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1262 vkos 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;  Copyright (C) Vasiliy Kosenko (vkos), 2009                                                    ;;
3
;;  This program is free software: you can redistribute it and/or modify it under the terms of    ;;
4
;;  the GNU General Public License as published by the Free Software Foundation, either version 3 ;;
5
;;  of the License, or (at your option) any later version.                                        ;;
6
;;                                                                                                ;;
7
;;  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;     ;;
8
;;  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See ;;
9
;;  the GNU General Public License for more details.                                              ;;
10
;;                                                                                                ;;
11
;;  You should have received a copy of the GNU General Public License along with this program.    ;;
12
;;  If not, see .                                                   ;;
13
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
 
15
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
16
;;  This is set of functions to work with IPC in KolibriOS                                        ;;
17
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
18
 
19
IPC_init:
20
	push eax
21
	mov eax, dword [IPC_area]
22
	mov dword [eax], 1
23
	mov dword [eax+4], 8
24
 
25
	stdcall event_add_mask, 0x40
26
 
27
	pop eax
28
 
29
	ret
30
 
31
IPC_area:
32
	dd 0