Subversion Repositories Kolibri OS

Rev

Rev 6974 | Rev 7644 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6974 Rev 7121
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
2
;;                                                              ;;
3
;; Copyright (C) KolibriOS team 2004-2016. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2016. All rights reserved. ;;
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
 
7
 
8
SYSTEM FUNCTIONS of OS Kolibri 0.7.7.0
8
SYSTEM FUNCTIONS of OS Kolibri 0.7.7.0
9
 
9
 
10
Number of the function is located in the register eax.
10
Number of the function is located in the register eax.
11
The call of the system function is executed by "int 0x40" command.
11
The call of the system function is executed by "int 0x40" command.
12
All registers except explicitly declared in the returned value,
12
All registers except explicitly declared in the returned value,
13
    including eflags, are preserved.
13
    including eflags, are preserved.
14
 
14
 
15
 
15
 
16
======================================================================
16
======================================================================
17
============== Function 0 - define and draw the window. ==============
17
============== Function 0 - define and draw the window. ==============
18
======================================================================
18
======================================================================
19
Defines an application window. Draws a frame of the window, header and
19
Defines an application window. Draws a frame of the window, header and
20
working area. For skinned windows defines standard close and minimize
20
working area. For skinned windows defines standard close and minimize
21
buttons.
21
buttons.
22
Parameters:
22
Parameters:
23
  * eax = 0 - function number
23
  * eax = 0 - function number
24
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
24
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
25
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
25
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
26
  * edx = 0xXYRRGGBB, where:
26
  * edx = 0xXYRRGGBB, where:
27
    * Y = style of the window:
27
    * Y = style of the window:
28
      * Y=1 - only define window area, draw nothing
28
      * Y=1 - only define window area, draw nothing
29
      * Y=3 - skinned window
29
      * Y=3 - skinned window
30
      * Y=4 - skinned fixed-size window
30
      * Y=4 - skinned fixed-size window
31
      * Y=0,2 window types are outdated and should not be used anymore,
31
      * Y=0,2 window types are outdated and should not be used anymore,
32
        they are retained for compatibility with old programs.
32
        they are retained for compatibility with old programs.
33
      * other possible values (from 5 to 15) are reserved,
33
      * other possible values (from 5 to 15) are reserved,
34
        function call with such Y is ignored
34
        function call with such Y is ignored
35
    * RR, GG, BB = accordingly red, green, blue components of a color
35
    * RR, GG, BB = accordingly red, green, blue components of a color
36
      of the working area of the window (are ignored for style Y=1)
36
      of the working area of the window (are ignored for style Y=1)
37
    * X = DCBA (bits)
37
    * X = DCBA (bits)
38
      * A = 1 - window has caption
38
      * A = 1 - window has caption
39
      * B = 1 - coordinates of all graphics primitives are relative to
39
      * B = 1 - coordinates of all graphics primitives are relative to
40
                  window client area
40
                  window client area
41
      * C = 1 - don't fill working area on window draw
41
      * C = 1 - don't fill working area on window draw
42
      * D = 0 - normal filling of the working area, 1 - gradient
42
      * D = 0 - normal filling of the working area, 1 - gradient
43
    The following parameters are intended for windows
43
    The following parameters are intended for windows
44
    of a type I and II, and ignored for styles Y=1,3:
44
    of a type I and II, and ignored for styles Y=1,3:
45
  * esi = 0xXYRRGGBB - color of the header
45
  * esi = 0xXYRRGGBB - color of the header
46
    * RR, GG, BB define color
46
    * RR, GG, BB define color
47
    * Y=0 - usual window, Y=1 - unmovable window (works for all window styles)
47
    * Y=0 - usual window, Y=1 - unmovable window (works for all window styles)
48
    * X not used, other values of Y are reserved
48
    * X not used, other values of Y are reserved
49
  * edi = caption string for styles Y=3,4 (also can be set by func 71.1)
49
  * edi = caption string for styles Y=3,4 (also can be set by func 71.1)
50
Returned value:
50
Returned value:
51
  * function does not return value
51
  * function does not return value
52
Remarks:
52
Remarks:
53
  * Position and sizes of the window are installed by the first
53
  * Position and sizes of the window are installed by the first
54
    call of this function and are ignored at subsequent; to change
54
    call of this function and are ignored at subsequent; to change
55
    position and/or sizes of already created window use function 67.
55
    position and/or sizes of already created window use function 67.
56
  * For windows with styles Y=3,4 and caption (A=1) caption string
56
  * For windows with styles Y=3,4 and caption (A=1) caption string
57
    is set by the first call of this function and is ignored
57
    is set by the first call of this function and is ignored
58
    at subsequent (strictly speaking, is ignored after a call to
58
    at subsequent (strictly speaking, is ignored after a call to
59
    subfunction 2 of function 12 - end redraw); to change caption of
59
    subfunction 2 of function 12 - end redraw); to change caption of
60
    already created window use subfunction 1 of function 71.
60
    already created window use subfunction 1 of function 71.
61
  * If the window has appropriate styles, position and/or sizes can be
61
  * If the window has appropriate styles, position and/or sizes can be
62
    changed by user. Current position and sizes can be obtained
62
    changed by user. Current position and sizes can be obtained
63
    by function 9.
63
    by function 9.
64
  * The window must fit on the screen. If the transferred
64
  * The window must fit on the screen. If the transferred
65
    coordinates and sizes do not satisfy to this condition,
65
    coordinates and sizes do not satisfy to this condition,
66
    appropriate coordinate (or, probably, both) is considered as zero,
66
    appropriate coordinate (or, probably, both) is considered as zero,
67
    and if it does not help too, the appropriate size
67
    and if it does not help too, the appropriate size
68
    (or, probably, both) is installed in a size of the screen.
68
    (or, probably, both) is installed in a size of the screen.
69
 
69
 
70
    Further let us designate xpos,ypos,xsize,ysize - values passed
70
    Further let us designate xpos,ypos,xsize,ysize - values passed
71
    in ebx,ecx. The coordinates are resulted concerning
71
    in ebx,ecx. The coordinates are resulted concerning
72
    the left upper corner of the window, which, thus, is set as (0,0),
72
    the left upper corner of the window, which, thus, is set as (0,0),
73
    coordinates of the right lower corner essence (xsize,ysize).
73
    coordinates of the right lower corner essence (xsize,ysize).
74
  * The sizes of the window are understood in sence of coordinates
74
  * The sizes of the window are understood in sence of coordinates
75
    of the right lower corner. This concerns all other functions too.
75
    of the right lower corner. This concerns all other functions too.
76
    It means, that the real sizes are on 1 pixel more.
76
    It means, that the real sizes are on 1 pixel more.
77
  * The window of style Y=1 looks as follows:
77
  * The window of style Y=1 looks as follows:
78
    * completely defined by the application
78
    * completely defined by the application
79
  * The skinned window Y=3,4 looks as follows:
79
  * The skinned window Y=3,4 looks as follows:
80
    * draw external frame of width 1 pixel
80
    * draw external frame of width 1 pixel
81
      with color 'outer' from the skin
81
      with color 'outer' from the skin
82
    * draw intermediate frame of width 3 pixel
82
    * draw intermediate frame of width 3 pixel
83
      with color 'frame' from the skin
83
      with color 'frame' from the skin
84
    * draw internal frame of width 1 pixel
84
    * draw internal frame of width 1 pixel
85
      with color 'inner' from the skin
85
      with color 'inner' from the skin
86
    * draw header (on bitmaps from the skin) in a rectangle
86
    * draw header (on bitmaps from the skin) in a rectangle
87
      (0,0) - (xsize,_skinh-1)
87
      (0,0) - (xsize,_skinh-1)
88
    * if ysize>=26, fill the working area of the window -
88
    * if ysize>=26, fill the working area of the window -
89
      rectangle with the left upper corner (5,_skinh) and right lower
89
      rectangle with the left upper corner (5,_skinh) and right lower
90
      (xsize-5,ysize-5) with color indicated in edx
90
      (xsize-5,ysize-5) with color indicated in edx
91
      (taking a gradient into account)
91
      (taking a gradient into account)
92
    * define two standard buttons: close and minimize
92
    * define two standard buttons: close and minimize
93
      (see function 8)
93
      (see function 8)
94
    * if A=1 and edi contains (nonzero) pointer to caption string,
94
    * if A=1 and edi contains (nonzero) pointer to caption string,
95
      it is drawn in place in header defined in the skin
95
      it is drawn in place in header defined in the skin
96
    * value _skinh is accessible as the result of call
96
    * value _skinh is accessible as the result of call
97
      subfunction 4 of function 48
97
      subfunction 4 of function 48
98
 
98
 
99
---------------------- Constants for registers: ----------------------
99
---------------------- Constants for registers: ----------------------
100
  eax - SF_CREATE_WINDOW (0)
100
  eax - SF_CREATE_WINDOW (0)
101
======================================================================
101
======================================================================
102
================ Function 1 - put pixel in the window. ===============
102
================ Function 1 - put pixel in the window. ===============
103
======================================================================
103
======================================================================
104
Parameters:
104
Parameters:
105
  * eax = 1 - function number
105
  * eax = 1 - function number
106
  * ebx = x-coordinate (relative to the window)
106
  * ebx = x-coordinate (relative to the window)
107
  * ecx = y-coordinate (relative to the window)
107
  * ecx = y-coordinate (relative to the window)
108
  * edx = 0x00RRGGBB - color of a pixel
108
  * edx = 0x00RRGGBB - color of a pixel
109
    edx = 0x01xxxxxx - invert color of a pixel
109
    edx = 0x01xxxxxx - invert color of a pixel
110
          (low 24 bits are ignored)
110
          (low 24 bits are ignored)
111
Returned value:
111
Returned value:
112
  * function does not return value
112
  * function does not return value
113
 
113
 
114
---------------------- Constants for registers: ----------------------
114
---------------------- Constants for registers: ----------------------
115
  eax - SF_PUT_PIXEL (1)
115
  eax - SF_PUT_PIXEL (1)
116
======================================================================
116
======================================================================
117
============ Function 2 - get the code of the pressed key. ===========
117
============ Function 2 - get the code of the pressed key. ===========
118
======================================================================
118
======================================================================
119
Takes away the code of the pressed key from the buffer.
119
Takes away the code of the pressed key from the buffer.
120
Parameters:
120
Parameters:
121
  * eax = 2 - function number
121
  * eax = 2 - function number
122
Returned value:
122
Returned value:
123
  * if the buffer is empty, function returns eax=1
123
  * if the buffer is empty, function returns eax=1
124
  * if the buffer is not empty, function returns al=0,
124
  * if the buffer is not empty, function returns al=0,
125
    ah=code of the pressed key,
125
    ah=code of the pressed key,
126
    bits 16-23 = contain scancode for pressed key in ASCII mode,
126
    bits 16-23 = contain scancode for pressed key in ASCII mode,
127
                 in the scancodes mode this bits cleared.
127
                 in the scancodes mode this bits cleared.
128
    bits 23-31 = zero
128
    bits 23-31 = zero
129
  * if there is "hotkey", function returns al=2,
129
  * if there is "hotkey", function returns al=2,
130
    ah=scancode of the pressed key (0 for control keys),
130
    ah=scancode of the pressed key (0 for control keys),
131
    high word of eax contains a status of control keys at the moment
131
    high word of eax contains a status of control keys at the moment
132
    of pressing a hotkey
132
    of pressing a hotkey
133
Remarks:
133
Remarks:
134
  * There is a common system buffer of the pressed keys
134
  * There is a common system buffer of the pressed keys
135
    by a size of 120 bytes, organized as queue.
135
    by a size of 120 bytes, organized as queue.
136
  * There is one more common system buffer on 120 "hotkeys".
136
  * There is one more common system buffer on 120 "hotkeys".
137
  * If the application with the inactive window calls this function,
137
  * If the application with the inactive window calls this function,
138
    the buffer of the pressed keys is considered to be empty.
138
    the buffer of the pressed keys is considered to be empty.
139
  * By default this function returns ASCII-codes; to switch
139
  * By default this function returns ASCII-codes; to switch
140
    to the scancodes mode (and back) use function 66.
140
    to the scancodes mode (and back) use function 66.
141
    However, hotkeys are always notificated as scancodes.
141
    However, hotkeys are always notificated as scancodes.
142
  * To find out, what keys correspond to what codes, start
142
  * To find out, what keys correspond to what codes, start
143
    the application keyascii and scancode.
143
    the application keyascii and scancode.
144
  * Scancodes come directly from keyboard and are fixed;
144
  * Scancodes come directly from keyboard and are fixed;
145
    ASCII-codes turn out with usage of the conversion tables,
145
    ASCII-codes turn out with usage of the conversion tables,
146
    which can be set by subfunction 2 of function 21
146
    which can be set by subfunction 2 of function 21
147
    and get by subfunction 2 of function 26.
147
    and get by subfunction 2 of function 26.
148
  * As a consequence, ASCII-codes take into account current
148
  * As a consequence, ASCII-codes take into account current
149
    keyboard layout (rus/en) as opposed to scancodes.
149
    keyboard layout (rus/en) as opposed to scancodes.
150
  * This function notifies only about those hotkeys, which were
150
  * This function notifies only about those hotkeys, which were
151
    defined by this thread by subfunction 4 of function 66.
151
    defined by this thread by subfunction 4 of function 66.
152
 
152
 
153
---------------------- Constants for registers: ----------------------
153
---------------------- Constants for registers: ----------------------
154
  eax - SF_GET_KEY (2)
154
  eax - SF_GET_KEY (2)
155
======================================================================
155
======================================================================
156
==================== Function 3 - get system time. ===================
156
==================== Function 3 - get system time. ===================
157
======================================================================
157
======================================================================
158
Parameters:
158
Parameters:
159
  * eax = 3 - function number
159
  * eax = 3 - function number
160
Returned value:
160
Returned value:
161
  * eax = 0x00SSMMHH, where HH:MM:SS = Hours:Minutes:Seconds
161
  * eax = 0x00SSMMHH, where HH:MM:SS = Hours:Minutes:Seconds
162
  * each item is BCD-number, for example,
162
  * each item is BCD-number, for example,
163
    for time 23:59:59 function returns 0x00595923
163
    for time 23:59:59 function returns 0x00595923
164
Remarks:
164
Remarks:
165
  * See also subfunction 9 of function 26 - get time from
165
  * See also subfunction 9 of function 26 - get time from
166
    the moment of start of the system; it is more convenient, because
166
    the moment of start of the system; it is more convenient, because
167
    returns simply DWORD-value of the time counter.
167
    returns simply DWORD-value of the time counter.
168
  * System time can be set by function 22.
168
  * System time can be set by function 22.
169
 
169
 
170
---------------------- Constants for registers: ----------------------
170
---------------------- Constants for registers: ----------------------
171
  eax - SF_GET_SYS_TIME (3)
171
  eax - SF_GET_SYS_TIME (3)
172
======================================================================
172
======================================================================
173
=================== Function 4 - draw text string. ===================
173
=================== Function 4 - draw text string. ===================
174
======================================================================
174
======================================================================
175
Parameters:
175
Parameters:
176
  * eax = 4 - function number
176
  * eax = 4 - function number
177
  * ebx = X*65536+Y, coordinates in the window or buffer
177
  * ebx = X*65536+Y, coordinates in the window or buffer
178
  * ecx = 0xXXRRGGBB, where
178
  * ecx = 0xXXRRGGBB, where
179
    * RR, GG, BB specify text color
179
    * RR, GG, BB specify text color
180
    * XX = ABFFCSSS (bits):
180
    * XX = ABFFCSSS (bits):
181
      * A=1 - output zero terminated string
181
      * A=1 - output zero terminated string
182
      * B=1 - fill background (color = edi)
182
      * B=1 - fill background (color = edi)
183
      * FF specifies the font and encoding:
183
      * FF specifies the font and encoding:
184
        0 = 6x9  cp866
184
        0 = 6x9  cp866
185
        1 = 8x16 cp866
185
        1 = 8x16 cp866
186
        2 = 8x16 UTF-16LE
186
        2 = 8x16 UTF-16LE
187
        3 = 8x16 UTF-8
187
        3 = 8x16 UTF-8
188
      * C=0 - draw to the window,
188
      * C=0 - draw to the window,
189
        C=1 - draw to the user buffer (edi)
189
        C=1 - draw to the user buffer (edi)
190
      * SSS = (size multiplier)-1, so 0 = x1, 7 = x8
190
      * SSS = (size multiplier)-1, so 0 = x1, 7 = x8
191
  * edx = pointer to the beginning of the string
191
  * edx = pointer to the beginning of the string
192
  * esi = for A=0 length of the string, for A=1 is ignored
192
  * esi = for A=0 length of the string, for A=1 is ignored
193
  * edi = for B=1 color to fill background,
193
  * edi = for B=1 color to fill background,
194
          for C=1 pointer to user buffer
194
          for C=1 pointer to user buffer
195
 
195
 
196
Returned value:
196
Returned value:
197
  * function does not return value
197
  * function does not return value
198
Remarks:
198
Remarks:
199
  * You can not use B=1 and C=1 at the same time, since both use edi.
199
  * You can not use B=1 and C=1 at the same time, since both use edi.
200
  * When SSS=0, font may be smoothed, depending on system setting.
200
  * When SSS=0, font may be smoothed, depending on system setting.
201
  * User buffer structure:
201
  * User buffer structure:
202
Xsize       dd
202
Xsize       dd
203
Ysize       dd
203
Ysize       dd
204
picture     rb  Xsize*Ysize*4  ; 32 bpp
204
picture     rb  Xsize*Ysize*4  ; 32 bpp
205
 
205
 
206
---------------------- Constants for registers: ----------------------
206
---------------------- Constants for registers: ----------------------
207
  eax - SF_DRAW_TEXT (4)
207
  eax - SF_DRAW_TEXT (4)
208
======================================================================
208
======================================================================
209
========================= Function 5 - delay. ========================
209
========================= Function 5 - delay. ========================
210
======================================================================
210
======================================================================
211
Delays execution of the program on the given time.
211
Delays execution of the program on the given time.
212
Parameters:
212
Parameters:
213
  * eax = 5 - function number
213
  * eax = 5 - function number
214
  * ebx = time in the 1/100 of second
214
  * ebx = time in the 1/100 of second
215
Returned value:
215
Returned value:
216
  * function does not return value
216
  * function does not return value
217
Remarks:
217
Remarks:
218
  * Passing ebx=0 does not transfer control to the next process
218
  * Passing ebx=0 does not transfer control to the next process
219
    and does not make any operations at all. If it is really required
219
    and does not make any operations at all. If it is really required
220
    to transfer control to the next process (to complete a current
220
    to transfer control to the next process (to complete a current
221
    time slice), use subfunction 1 of function 68.
221
    time slice), use subfunction 1 of function 68.
222
 
222
 
223
---------------------- Constants for registers: ----------------------
223
---------------------- Constants for registers: ----------------------
224
  eax - SF_SLEEP (5)
224
  eax - SF_SLEEP (5)
225
======================================================================
225
======================================================================
226
=============== Function 7 - draw image in the window. ===============
226
=============== Function 7 - draw image in the window. ===============
227
======================================================================
227
======================================================================
228
Paramters:
228
Paramters:
229
  * eax = 7 - function number
229
  * eax = 7 - function number
230
  * ebx = pointer to the image in the format BBGGRRBBGGRR...
230
  * ebx = pointer to the image in the format BBGGRRBBGGRR...
231
  * ecx = [size on axis x]*65536 + [size on axis y]
231
  * ecx = [size on axis x]*65536 + [size on axis y]
232
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
232
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
233
Returned value:
233
Returned value:
234
  * function does not return value
234
  * function does not return value
235
Remarks:
235
Remarks:
236
  * Coordinates of the image are coordinates of the upper left corner
236
  * Coordinates of the image are coordinates of the upper left corner
237
    of the image relative to the window.
237
    of the image relative to the window.
238
  * Size of the image in bytes is 3*xsize*ysize.
238
  * Size of the image in bytes is 3*xsize*ysize.
239
 
239
 
240
---------------------- Constants for registers: ----------------------
240
---------------------- Constants for registers: ----------------------
241
  eax - SF_PUT_IMAGE (7)
241
  eax - SF_PUT_IMAGE (7)
242
======================================================================
242
======================================================================
243
=============== Function 8 - define/delete the button. ===============
243
=============== Function 8 - define/delete the button. ===============
244
======================================================================
244
======================================================================
245
Parameters for button definition:
245
Parameters for button definition:
246
  * eax = 8 - function number
246
  * eax = 8 - function number
247
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
247
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
248
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
248
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
249
  * edx = 0xXYnnnnnn, where:
249
  * edx = 0xXYnnnnnn, where:
250
    * nnnnnn = identifier of the button
250
    * nnnnnn = identifier of the button
251
    * high (31st) bit of edx is cleared
251
    * high (31st) bit of edx is cleared
252
    * if 30th bit of edx is set - do not draw the button
252
    * if 30th bit of edx is set - do not draw the button
253
    * if 29th bit of edx is set - do not draw a frame
253
    * if 29th bit of edx is set - do not draw a frame
254
      at pressing the button
254
      at pressing the button
255
  * esi = 0x00RRGGBB - color of the button
255
  * esi = 0x00RRGGBB - color of the button
256
Parameters for button deleting:
256
Parameters for button deleting:
257
  * eax = 8 - function number
257
  * eax = 8 - function number
258
  * edx = 0x80nnnnnn, where nnnnnn - identifier of the button
258
  * edx = 0x80nnnnnn, where nnnnnn - identifier of the button
259
Returned value:
259
Returned value:
260
  * function does not return value
260
  * function does not return value
261
Remarks:
261
Remarks:
262
  * Sizes of the button must be more than 0 and less than 0x8000.
262
  * Sizes of the button must be more than 0 and less than 0x8000.
263
  * For skinned windows definition of the window
263
  * For skinned windows definition of the window
264
    (call of 0th function) creates two standard buttons -
264
    (call of 0th function) creates two standard buttons -
265
    for close of the window with identifier 1 and
265
    for close of the window with identifier 1 and
266
    for minimize of the window with identifier 0xffff.
266
    for minimize of the window with identifier 0xffff.
267
  * The creation of two buttons with same identifiers is admitted.
267
  * The creation of two buttons with same identifiers is admitted.
268
  * The button with the identifier 0xffff at pressing is interpreted
268
  * The button with the identifier 0xffff at pressing is interpreted
269
    by the system as the button of minimization, the system handles
269
    by the system as the button of minimization, the system handles
270
    such pressing independently, not accessing to the application.
270
    such pressing independently, not accessing to the application.
271
    In rest it is usual button.
271
    In rest it is usual button.
272
  * Total number of buttons for all applications is limited to 4095.
272
  * Total number of buttons for all applications is limited to 4095.
273
 
273
 
274
---------------------- Constants for registers: ----------------------
274
---------------------- Constants for registers: ----------------------
275
  eax - SF_DEFINE_BUTTON (8)
275
  eax - SF_DEFINE_BUTTON (8)
276
======================================================================
276
======================================================================
277
============ Function 9 - information on execution thread. ===========
277
============ Function 9 - information on execution thread. ===========
278
======================================================================
278
======================================================================
279
Parameters:
279
Parameters:
280
  * eax = 9 - function number
280
  * eax = 9 - function number
281
  * ebx = pointer to 1-Kb buffer
281
  * ebx = pointer to 1-Kb buffer
282
  * ecx = number of the slot of the thread
282
  * ecx = number of the slot of the thread
283
    ecx = -1 - get information on the current thread
283
    ecx = -1 - get information on the current thread
284
Returned value:
284
Returned value:
285
  * eax = maximum number of the slot of a thread
285
  * eax = maximum number of the slot of a thread
286
  * buffer pointed to by ebx contains the following information:
286
  * buffer pointed to by ebx contains the following information:
287
    * +0: dword: usage of the processor (how many time units
287
    * +0: dword: usage of the processor (how many time units
288
      per second leaves on execution of this thread)
288
      per second leaves on execution of this thread)
289
    * +4: word: position of the window of thread in the window stack
289
    * +4: word: position of the window of thread in the window stack
290
    * +6: word: (has no relation to the specified thread)
290
    * +6: word: (has no relation to the specified thread)
291
      number of the thread slot, which window has in the window stack
291
      number of the thread slot, which window has in the window stack
292
      position ecx
292
      position ecx
293
    * +8: word: reserved
293
    * +8: word: reserved
294
    * +10 = +0xA: 11 bytes: name of the process
294
    * +10 = +0xA: 11 bytes: name of the process
295
      (name of the started file - executable file without extension)
295
      (name of the started file - executable file without extension)
296
    * +21 = +0x15: byte: reserved, this byte is not changed
296
    * +21 = +0x15: byte: reserved, this byte is not changed
297
    * +22 = +0x16: dword: address of the process in memory
297
    * +22 = +0x16: dword: address of the process in memory
298
    * +26 = +0x1A: dword: size of used memory - 1
298
    * +26 = +0x1A: dword: size of used memory - 1
299
    * +30 = +0x1E: dword: identifier (PID/TID)
299
    * +30 = +0x1E: dword: identifier (PID/TID)
300
    * +34 = +0x22: dword: coordinate of the thread window on axis x
300
    * +34 = +0x22: dword: coordinate of the thread window on axis x
301
    * +38 = +0x26: dword: coordinate of the thread window on axis y
301
    * +38 = +0x26: dword: coordinate of the thread window on axis y
302
    * +42 = +0x2A: dword: size of the thread window on axis x
302
    * +42 = +0x2A: dword: size of the thread window on axis x
303
    * +46 = +0x2E: dword: size of the thread window on axis y
303
    * +46 = +0x2E: dword: size of the thread window on axis y
304
    * +50 = +0x32: word: status of the thread slot:
304
    * +50 = +0x32: word: status of the thread slot:
305
      * 0 = thread is running
305
      * 0 = thread is running
306
      * 1 = thread is suspended
306
      * 1 = thread is suspended
307
      * 2 = thread is suspended while waiting for event
307
      * 2 = thread is suspended while waiting for event
308
      * 3 = thread is terminating as a result of call to function -1
308
      * 3 = thread is terminating as a result of call to function -1
309
        or under duress as a result of call to subfunction 2
309
        or under duress as a result of call to subfunction 2
310
        of function 18 or termination of the system
310
        of function 18 or termination of the system
311
      * 4 = thread is terminating as a result of exception
311
      * 4 = thread is terminating as a result of exception
312
      * 5 = thread waits for event
312
      * 5 = thread waits for event
313
      * 9 = requested slot is free, all other information on the slot
313
      * 9 = requested slot is free, all other information on the slot
314
        is not meaningful
314
        is not meaningful
315
    * +52 = +0x34: word: reserved, this word is not changed
315
    * +52 = +0x34: word: reserved, this word is not changed
316
    * +54 = +0x36: dword: coordinate of the client area on axis x
316
    * +54 = +0x36: dword: coordinate of the client area on axis x
317
    * +58 = +0x3A: dword: coordinate of the client area on axis y
317
    * +58 = +0x3A: dword: coordinate of the client area on axis y
318
    * +62 = +0x3E: dword: width of the client area
318
    * +62 = +0x3E: dword: width of the client area
319
    * +66 = +0x42: dword: height of the client area
319
    * +66 = +0x42: dword: height of the client area
320
    * +70 = +0x46: byte: state of the window - bitfield
320
    * +70 = +0x46: byte: state of the window - bitfield
321
      * bit 0 (mask 1): window is maximized
321
      * bit 0 (mask 1): window is maximized
322
      * bit 1 (mask 2): window is minimized to panel
322
      * bit 1 (mask 2): window is minimized to panel
323
      * bit 2 (mask 4): window is rolled up
323
      * bit 2 (mask 4): window is rolled up
324
    * +71 = +0x47: dword: event mask
324
    * +71 = +0x47: dword: event mask
325
    * +75 = +0x4B: byte: keyboard mode(ASCII = 0; SCAN = 1)
325
    * +75 = +0x4B: byte: keyboard mode(ASCII = 0; SCAN = 1)
326
Remarks:
326
Remarks:
327
  * Slots are numbered starting from 1.
327
  * Slots are numbered starting from 1.
328
  * Returned value is not a total number of threads, because there
328
  * Returned value is not a total number of threads, because there
329
    can be free slots.
329
    can be free slots.
330
  * When process is starting, system automatically creates
330
  * When process is starting, system automatically creates
331
    execution thread.
331
    execution thread.
332
  * Function gives information on the thread. Each process has
332
  * Function gives information on the thread. Each process has
333
    at least one thread. One process can create many threads,
333
    at least one thread. One process can create many threads,
334
    in this case each thread has its own slot and the fields
334
    in this case each thread has its own slot and the fields
335
    +10, +22, +26 in these slots coincide.
335
    +10, +22, +26 in these slots coincide.
336
    Applications have no common way to define whether two threads
336
    Applications have no common way to define whether two threads
337
    belong to one process.
337
    belong to one process.
338
  * The active window - window on top of the window stack -
338
  * The active window - window on top of the window stack -
339
    receives the messages on a keyboard input. For such window
339
    receives the messages on a keyboard input. For such window
340
    the position in the window stack coincides with returned value.
340
    the position in the window stack coincides with returned value.
341
  * Slot 1 corresponds to special system thread, for which:
341
  * Slot 1 corresponds to special system thread, for which:
342
    * the window is in the bottom of the window stack, the fields
342
    * the window is in the bottom of the window stack, the fields
343
      +4 and +6 contain value 1
343
      +4 and +6 contain value 1
344
    * name of the process - "OS/IDLE" (supplemented by spaces)
344
    * name of the process - "OS/IDLE" (supplemented by spaces)
345
    * address of the process in memory is 0, size of used memory is
345
    * address of the process in memory is 0, size of used memory is
346
      16 Mb (0x1000000)
346
      16 Mb (0x1000000)
347
    * PID=1
347
    * PID=1
348
    * coordinates and sizes of the window and the client area are by
348
    * coordinates and sizes of the window and the client area are by
349
      convention set to 0
349
      convention set to 0
350
    * status of the slot is always 0 (running)
350
    * status of the slot is always 0 (running)
351
    * the execution time adds of time leaving on operations itself
351
    * the execution time adds of time leaving on operations itself
352
      and idle time in waiting for interrupt (which can be got by call
352
      and idle time in waiting for interrupt (which can be got by call
353
      to subfunction 4 of function 18).
353
      to subfunction 4 of function 18).
354
  * Beginning from slot 2, the normal applications are placed.
354
  * Beginning from slot 2, the normal applications are placed.
355
  * The normal applications are placed in memory at the address
355
  * The normal applications are placed in memory at the address
356
    0 (kernel constant 'std_application_base_address').
356
    0 (kernel constant 'std_application_base_address').
357
    There is no intersection, as each process has its own page table.
357
    There is no intersection, as each process has its own page table.
358
  * At creation of the thread it is assigned the slot
358
  * At creation of the thread it is assigned the slot
359
    in the system table and identifier (Process/Thread IDentifier =
359
    in the system table and identifier (Process/Thread IDentifier =
360
    PID/TID), which do not vary with time for given thread.
360
    PID/TID), which do not vary with time for given thread.
361
    After completion of the thread its slot can be anew used
361
    After completion of the thread its slot can be anew used
362
    for another thread. The thread identifier can not be assigned
362
    for another thread. The thread identifier can not be assigned
363
    to other thread even after completion of this thread.
363
    to other thread even after completion of this thread.
364
    Identifiers, assigned to new threads, grow monotonously.
364
    Identifiers, assigned to new threads, grow monotonously.
365
  * If the thread has not yet defined the window by call to
365
  * If the thread has not yet defined the window by call to
366
    function 0, the position and the sizes
366
    function 0, the position and the sizes
367
    of its window are considered to be zero.
367
    of its window are considered to be zero.
368
  * Coordinates of the client area are relative to the window.
368
  * Coordinates of the client area are relative to the window.
369
  * At the moment only the part of the buffer by a size
369
  * At the moment only the part of the buffer by a size
370
    76 = 0x4C bytes is used. Nevertheless it is recommended to use
370
    76 = 0x4C bytes is used. Nevertheless it is recommended to use
371
    1-Kb buffer for the future compatibility, in the future
371
    1-Kb buffer for the future compatibility, in the future
372
    some fields can be added.
372
    some fields can be added.
373
 
373
 
374
---------------------- Constants for registers: ----------------------
374
---------------------- Constants for registers: ----------------------
375
  eax - SF_THREAD_INFO (9)
375
  eax - SF_THREAD_INFO (9)
376
======================================================================
376
======================================================================
377
==================== Function 10 - wait for event. ===================
377
==================== Function 10 - wait for event. ===================
378
======================================================================
378
======================================================================
379
If the message queue is empty, waits for appearance of the message
379
If the message queue is empty, waits for appearance of the message
380
in queue. In this state thread does not consume CPU time.
380
in queue. In this state thread does not consume CPU time.
381
Then reads out the message from queue.
381
Then reads out the message from queue.
382
 
382
 
383
Parameters:
383
Parameters:
384
  * eax = 10 - function number
384
  * eax = 10 - function number
385
Returned value:
385
Returned value:
386
  * eax = event (see the list of events)
386
  * eax = event (see the list of events)
387
Remarks:
387
Remarks:
388
  * Those events are taken into account only which enter into
388
  * Those events are taken into account only which enter into
389
    a mask set by function 40. By default it is
389
    a mask set by function 40. By default it is
390
    redraw, key and button events.
390
    redraw, key and button events.
391
  * To check, whether there is a message in queue, use function 11.
391
  * To check, whether there is a message in queue, use function 11.
392
    To wait for no more than given time, use function 23.
392
    To wait for no more than given time, use function 23.
393
 
393
 
394
---------------------- Constants for registers: ----------------------
394
---------------------- Constants for registers: ----------------------
395
  eax - SF_WAIT_EVENT (10)
395
  eax - SF_WAIT_EVENT (10)
396
======================================================================
396
======================================================================
397
=============== Function 11 - check for event, no wait. ==============
397
=============== Function 11 - check for event, no wait. ==============
398
======================================================================
398
======================================================================
399
If the message queue contains event, function reads out
399
If the message queue contains event, function reads out
400
and return it. If the queue is empty, function returns 0.
400
and return it. If the queue is empty, function returns 0.
401
Parameters:
401
Parameters:
402
  * eax = 11 - function number
402
  * eax = 11 - function number
403
Returned value:
403
Returned value:
404
  * eax = 0 - message queue is empty
404
  * eax = 0 - message queue is empty
405
  * else eax = event (see the list of events)
405
  * else eax = event (see the list of events)
406
Remarks:
406
Remarks:
407
  * Those events are taken into account only, which enter into
407
  * Those events are taken into account only, which enter into
408
    a mask set by function 40. By default it is
408
    a mask set by function 40. By default it is
409
    redraw, key and button events.
409
    redraw, key and button events.
410
  * To wait for event, use function 10.
410
  * To wait for event, use function 10.
411
    To wait for no more than given time, use function 23.
411
    To wait for no more than given time, use function 23.
412
 
412
 
413
---------------------- Constants for registers: ----------------------
413
---------------------- Constants for registers: ----------------------
414
  eax - SF_CHECK_EVENT (11)
414
  eax - SF_CHECK_EVENT (11)
415
======================================================================
415
======================================================================
416
=============== Function 12 - begin/end window redraw. ===============
416
=============== Function 12 - begin/end window redraw. ===============
417
======================================================================
417
======================================================================
418
 
418
 
419
---------------- Subfunction 1 - begin window redraw. ----------------
419
---------------- Subfunction 1 - begin window redraw. ----------------
420
Parameters:
420
Parameters:
421
  * eax = 12 - function number
421
  * eax = 12 - function number
422
  * ebx = 1 - subfunction number
422
  * ebx = 1 - subfunction number
423
Returned value:
423
Returned value:
424
  * function does not return value
424
  * function does not return value
425
 
425
 
426
----------------- Subfunction 2 - end window redraw. -----------------
426
----------------- Subfunction 2 - end window redraw. -----------------
427
Parameters:
427
Parameters:
428
  * eax = 12 - function number
428
  * eax = 12 - function number
429
  * ebx = 2 - subfunction number
429
  * ebx = 2 - subfunction number
430
Returned value:
430
Returned value:
431
  * function does not return value
431
  * function does not return value
432
Remarks:
432
Remarks:
433
  * Subfunction 1 deletes all buttons defined with
433
  * Subfunction 1 deletes all buttons defined with
434
    function 8, they must be defined again.
434
    function 8, they must be defined again.
435
 
435
 
436
---------------------- Constants for registers: ----------------------
436
---------------------- Constants for registers: ----------------------
437
  eax - SF_REDRAW (12)
437
  eax - SF_REDRAW (12)
438
  ebx - SSF_BEGIN_DRAW (1), SSF_END_DRAW (2)
438
  ebx - SSF_BEGIN_DRAW (1), SSF_END_DRAW (2)
439
======================================================================
439
======================================================================
440
============ Function 13 - draw a rectangle in the window. ===========
440
============ Function 13 - draw a rectangle in the window. ===========
441
======================================================================
441
======================================================================
442
Parameters:
442
Parameters:
443
  * eax = 13 - function number
443
  * eax = 13 - function number
444
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
444
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
445
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
445
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
446
  * edx = color 0xRRGGBB or 0x80RRGGBB for gradient fill
446
  * edx = color 0xRRGGBB or 0x80RRGGBB for gradient fill
447
Returned value:
447
Returned value:
448
  * function does not return value
448
  * function does not return value
449
Remarks:
449
Remarks:
450
  * Coordinates are understood as coordinates of the left upper corner
450
  * Coordinates are understood as coordinates of the left upper corner
451
    of a rectangle relative to the window.
451
    of a rectangle relative to the window.
452
 
452
 
453
---------------------- Constants for registers: ----------------------
453
---------------------- Constants for registers: ----------------------
454
  eax - SF_DRAW_RECT (13)
454
  eax - SF_DRAW_RECT (13)
455
======================================================================
455
======================================================================
456
=================== Function 14 - get screen size. ===================
456
=================== Function 14 - get screen size. ===================
457
======================================================================
457
======================================================================
458
Parameters:
458
Parameters:
459
  * eax = 14 - function number
459
  * eax = 14 - function number
460
Returned value:
460
Returned value:
461
  * eax = [xsize]*65536 + [ysize], where
461
  * eax = [xsize]*65536 + [ysize], where
462
  * xsize = x-coordinate of the right lower corner of the screen =
462
  * xsize = x-coordinate of the right lower corner of the screen =
463
            horizontal size - 1
463
            horizontal size - 1
464
  * ysize = y-coordinate of the right lower corner of the screen =
464
  * ysize = y-coordinate of the right lower corner of the screen =
465
            vertical size - 1
465
            vertical size - 1
466
Remarks:
466
Remarks:
467
  * See also subfunction 5 of function 48 - get sizes of
467
  * See also subfunction 5 of function 48 - get sizes of
468
    working area of the screen.
468
    working area of the screen.
469
 
469
 
470
---------------------- Constants for registers: ----------------------
470
---------------------- Constants for registers: ----------------------
471
  eax - SF_GET_SCREEN_SIZE (14)
471
  eax - SF_GET_SCREEN_SIZE (14)
472
======================================================================
472
======================================================================
473
== Function 15, subfunction 1 - set a size of the background image. ==
473
== Function 15, subfunction 1 - set a size of the background image. ==
474
======================================================================
474
======================================================================
475
Parameters:
475
Parameters:
476
  * eax = 15 - function number
476
  * eax = 15 - function number
477
  * ebx = 1 - subfunction number
477
  * ebx = 1 - subfunction number
478
  * ecx = width of the image
478
  * ecx = width of the image
479
  * edx = height of the image
479
  * edx = height of the image
480
Returned value:
480
Returned value:
481
  * function does not return value
481
  * function does not return value
482
Remarks:
482
Remarks:
483
  * Before calling subfunctions 2 and 5 you should call this function
483
  * Before calling subfunctions 2 and 5 you should call this function
484
    to set image size!
484
    to set image size!
485
  * For update of the screen (after completion of a series of commands
485
  * For update of the screen (after completion of a series of commands
486
    working with a background) call subfunction 3.
486
    working with a background) call subfunction 3.
487
  * There is a pair function for get size of the background image -
487
  * There is a pair function for get size of the background image -
488
    subfunction 1 of function 39.
488
    subfunction 1 of function 39.
489
 
489
 
490
---------------------- Constants for registers: ----------------------
490
---------------------- Constants for registers: ----------------------
491
  eax - SF_BACKGROUND_SET (15)
491
  eax - SF_BACKGROUND_SET (15)
492
  ebx - SSF_SIZE_BG (1)
492
  ebx - SSF_SIZE_BG (1)
493
======================================================================
493
======================================================================
494
=== Function 15, subfunction 2 - put pixel on the background image. ==
494
=== Function 15, subfunction 2 - put pixel on the background image. ==
495
======================================================================
495
======================================================================
496
Parameters:
496
Parameters:
497
  * eax = 15 - function number
497
  * eax = 15 - function number
498
  * ebx = 2 - subfunction number
498
  * ebx = 2 - subfunction number
499
  * ecx = offset
499
  * ecx = offset
500
  * edx = color of a pixel 0xRRGGBB
500
  * edx = color of a pixel 0xRRGGBB
501
Returned value:
501
Returned value:
502
  * function does not return value
502
  * function does not return value
503
Remarks:
503
Remarks:
504
  * Offset for a pixel with coordinates (x,y) is calculated as
504
  * Offset for a pixel with coordinates (x,y) is calculated as
505
    (x+y*xsize)*3.
505
    (x+y*xsize)*3.
506
  * If the given offset exceeds size set by subfunction 1,
506
  * If the given offset exceeds size set by subfunction 1,
507
    the call is ignored.
507
    the call is ignored.
508
  * For update of the screen (after completion of a series of commands
508
  * For update of the screen (after completion of a series of commands
509
    working with a background) call subfunction 3.
509
    working with a background) call subfunction 3.
510
  * There is a pair function for get pixel on the background image -
510
  * There is a pair function for get pixel on the background image -
511
    subfunction 2 of function 39.
511
    subfunction 2 of function 39.
512
 
512
 
513
---------------------- Constants for registers: ----------------------
513
---------------------- Constants for registers: ----------------------
514
  eax - SF_BACKGROUND_SET (15)
514
  eax - SF_BACKGROUND_SET (15)
515
  ebx - SSF_PIXEL_BG (2)
515
  ebx - SSF_PIXEL_BG (2)
516
======================================================================
516
======================================================================
517
=========== Function 15, subfunction 3 - redraw background. ==========
517
=========== Function 15, subfunction 3 - redraw background. ==========
518
======================================================================
518
======================================================================
519
Parameters:
519
Parameters:
520
  * eax = 15 - function number
520
  * eax = 15 - function number
521
  * ebx = 3 - subfunction number
521
  * ebx = 3 - subfunction number
522
Returned value:
522
Returned value:
523
  * function does not return value
523
  * function does not return value
524
 
524
 
525
---------------------- Constants for registers: ----------------------
525
---------------------- Constants for registers: ----------------------
526
  eax - SF_BACKGROUND_SET (15)
526
  eax - SF_BACKGROUND_SET (15)
527
  ebx - SSF_REDRAW_BG (3)
527
  ebx - SSF_REDRAW_BG (3)
528
======================================================================
528
======================================================================
529
== Function 15, subfunction 4 - set drawing mode for the background. =
529
== Function 15, subfunction 4 - set drawing mode for the background. =
530
======================================================================
530
======================================================================
531
Parameters:
531
Parameters:
532
  * eax = 15 - function number
532
  * eax = 15 - function number
533
  * ebx = 4 - subfunction number
533
  * ebx = 4 - subfunction number
534
  * ecx = drawing mode:
534
  * ecx = drawing mode:
535
    * 1 = tile
535
    * 1 = tile
536
    * 2 = stretch
536
    * 2 = stretch
537
Returned value:
537
Returned value:
538
  * function does not return value
538
  * function does not return value
539
Remarks:
539
Remarks:
540
  * For update of the screen (after completion of a series of commands
540
  * For update of the screen (after completion of a series of commands
541
    working with a background) call subfunction 3.
541
    working with a background) call subfunction 3.
542
  * There is a pair function for get drawing mode of the background -
542
  * There is a pair function for get drawing mode of the background -
543
    subfunction 4 of function 39.
543
    subfunction 4 of function 39.
544
 
544
 
545
---------------------- Constants for registers: ----------------------
545
---------------------- Constants for registers: ----------------------
546
  eax - SF_BACKGROUND_SET (15)
546
  eax - SF_BACKGROUND_SET (15)
547
  ebx - SSF_MODE_BG (4)
547
  ebx - SSF_MODE_BG (4)
548
======================================================================
548
======================================================================
549
===================== Function 15, subfunction 5 =====================
549
===================== Function 15, subfunction 5 =====================
550
============ Put block of pixels on the background image. ============
550
============ Put block of pixels on the background image. ============
551
======================================================================
551
======================================================================
552
Parameters:
552
Parameters:
553
  * eax = 15 - function number
553
  * eax = 15 - function number
554
  * ebx = 5 - subfunction number
554
  * ebx = 5 - subfunction number
555
  * ecx = pointer to the data in the format BBGGRRBBGGRR...
555
  * ecx = pointer to the data in the format BBGGRRBBGGRR...
556
  * edx = offset in data of the background image
556
  * edx = offset in data of the background image
557
  * esi = size of data in bytes = 3 * number of pixels
557
  * esi = size of data in bytes = 3 * number of pixels
558
Returned value:
558
Returned value:
559
  * function does not return value
559
  * function does not return value
560
Remarks:
560
Remarks:
561
  * Offset and size are not checked for correctness.
561
  * Offset and size are not checked for correctness.
562
  * Color of each pixel is stored as 3-bytes value BBGGRR.
562
  * Color of each pixel is stored as 3-bytes value BBGGRR.
563
  * Pixels of the background image are written sequentially
563
  * Pixels of the background image are written sequentially
564
    from left to right, from up to down.
564
    from left to right, from up to down.
565
  * Offset of pixel with coordinates (x,y) is (x+y*xsize)*3.
565
  * Offset of pixel with coordinates (x,y) is (x+y*xsize)*3.
566
  * For update of the screen (after completion of a series of commands
566
  * For update of the screen (after completion of a series of commands
567
    working with a background) call subfunction 3.
567
    working with a background) call subfunction 3.
568
 
568
 
569
---------------------- Constants for registers: ----------------------
569
---------------------- Constants for registers: ----------------------
570
  eax - SF_BACKGROUND_SET (15)
570
  eax - SF_BACKGROUND_SET (15)
571
  ebx - SSF_IMAGE_BG (5)
571
  ebx - SSF_IMAGE_BG (5)
572
======================================================================
572
======================================================================
573
===================== Function 15, subfunction 6 =====================
573
===================== Function 15, subfunction 6 =====================
574
======== Map background data to the address space of process. ========
574
======== Map background data to the address space of process. ========
575
======================================================================
575
======================================================================
576
Parameters:
576
Parameters:
577
  * eax = 15 - function number
577
  * eax = 15 - function number
578
  * ebx = 6 - subfunction number
578
  * ebx = 6 - subfunction number
579
Returned value:
579
Returned value:
580
  * eax = pointer to background data, 0 if error
580
  * eax = pointer to background data, 0 if error
581
Remarks:
581
Remarks:
582
  * Mapped data are available for read and write.
582
  * Mapped data are available for read and write.
583
  * Size of background data is 3*xsize*ysize. The system blocks
583
  * Size of background data is 3*xsize*ysize. The system blocks
584
    changes of background sizes while process works with mapped data.
584
    changes of background sizes while process works with mapped data.
585
  * Color of each pixel is stored as 3-bytes value BBGGRR.
585
  * Color of each pixel is stored as 3-bytes value BBGGRR.
586
  * Pixels of the background image are written sequentially
586
  * Pixels of the background image are written sequentially
587
    from left to right, from up to down.
587
    from left to right, from up to down.
588
 
588
 
589
---------------------- Constants for registers: ----------------------
589
---------------------- Constants for registers: ----------------------
590
  eax - SF_BACKGROUND_SET (15)
590
  eax - SF_BACKGROUND_SET (15)
591
  ebx - SSF_MAP_BG (6)
591
  ebx - SSF_MAP_BG (6)
592
======================================================================
592
======================================================================
593
===== Function 15, subfunction 7 - close mapped background data. =====
593
===== Function 15, subfunction 7 - close mapped background data. =====
594
======================================================================
594
======================================================================
595
Parameters:
595
Parameters:
596
  * eax = 15 - function number
596
  * eax = 15 - function number
597
  * ebx = 7 - subfunction number
597
  * ebx = 7 - subfunction number
598
  * ecx = pointer to mapped data
598
  * ecx = pointer to mapped data
599
Returned value:
599
Returned value:
600
  * eax = 1 - success, 0 - error
600
  * eax = 1 - success, 0 - error
601
 
601
 
602
---------------------- Constants for registers: ----------------------
602
---------------------- Constants for registers: ----------------------
603
  eax - SF_BACKGROUND_SET (15)
603
  eax - SF_BACKGROUND_SET (15)
604
  ebx - SSF_UNMAP_BG (7)
604
  ebx - SSF_UNMAP_BG (7)
605
======================================================================
605
======================================================================
606
===================== Function 15, subfunction 8 =====================
606
===================== Function 15, subfunction 8 =====================
607
============= Get coordinates of last draw the background ============
607
============= Get coordinates of last draw the background ============
608
======================================================================
608
======================================================================
609
Parameters:
609
Parameters:
610
  * eax = 15 - function number
610
  * eax = 15 - function number
611
  * ebx = 8 - subfunction number
611
  * ebx = 8 - subfunction number
612
Returned value:
612
Returned value:
613
  * eax = [left]*65536 + [right]
613
  * eax = [left]*65536 + [right]
614
  * ebx = [top]*65536 + [bottom]
614
  * ebx = [top]*65536 + [bottom]
615
Remarks:
615
Remarks:
616
  * (left,top) are coordinates of the left upper corner,
616
  * (left,top) are coordinates of the left upper corner,
617
    (right,bottom) are coordinates of the right lower one.
617
    (right,bottom) are coordinates of the right lower one.
618
  * For receiving more reliable information, call the function
618
  * For receiving more reliable information, call the function
619
    immediately after the event:
619
    immediately after the event:
620
             5 = kernel finished redrawing of the desktop background
620
             5 = kernel finished redrawing of the desktop background
621
 
621
 
622
---------------------- Constants for registers: ----------------------
622
---------------------- Constants for registers: ----------------------
623
  eax - SF_BACKGROUND_SET (15)
623
  eax - SF_BACKGROUND_SET (15)
624
  ebx - SSF_LAST_DRAW (8)
624
  ebx - SSF_LAST_DRAW (8)
625
======================================================================
625
======================================================================
626
===================== Function 15, subfunction 9 =====================
626
===================== Function 15, subfunction 9 =====================
627
============= Redraws a rectangular part of the background ===========
627
============= Redraws a rectangular part of the background ===========
628
======================================================================
628
======================================================================
629
Parameters:
629
Parameters:
630
  * eax = 15 - function number
630
  * eax = 15 - function number
631
  * ebx = 9 - subfunction number
631
  * ebx = 9 - subfunction number
632
  * ecx = [left]*65536 + [right]
632
  * ecx = [left]*65536 + [right]
633
  * edx = [top]*65536 + [bottom]
633
  * edx = [top]*65536 + [bottom]
634
Returned value:
634
Returned value:
635
  * function does not return value
635
  * function does not return value
636
Remarks:
636
Remarks:
637
  * (left,top) are coordinates of the left upper corner,
637
  * (left,top) are coordinates of the left upper corner,
638
    (right,bottom) are coordinates of the right lower one.
638
    (right,bottom) are coordinates of the right lower one.
639
  * If parameters are set incorrectly then background is not redrawn.
639
  * If parameters are set incorrectly then background is not redrawn.
640
 
640
 
641
---------------------- Constants for registers: ----------------------
641
---------------------- Constants for registers: ----------------------
642
  eax - SF_BACKGROUND_SET (15)
642
  eax - SF_BACKGROUND_SET (15)
643
  ebx - SSF_REDRAW_RECT (9)
643
  ebx - SSF_REDRAW_RECT (9)
644
======================================================================
644
======================================================================
645
=============== Function 16 - save ramdisk on a floppy. ==============
645
=============== Function 16 - save ramdisk on a floppy. ==============
646
======================================================================
646
======================================================================
647
Parameters:
647
Parameters:
648
  * eax = 16 - function number
648
  * eax = 16 - function number
649
  * ebx = 1 or ebx = 2 - on which floppy save
649
  * ebx = 1 or ebx = 2 - on which floppy save
650
Returned value:
650
Returned value:
651
  * eax = 0 - success
651
  * eax = 0 - success
652
  * eax = 1 - error
652
  * eax = 1 - error
653
 
653
 
654
---------------------- Constants for registers: ----------------------
654
---------------------- Constants for registers: ----------------------
655
  eax - SF_RD_TO_FLOPPY (16)
655
  eax - SF_RD_TO_FLOPPY (16)
656
======================================================================
656
======================================================================
657
======= Function 17 - get the identifier of the pressed button. ======
657
======= Function 17 - get the identifier of the pressed button. ======
658
======================================================================
658
======================================================================
659
Takes away the code of the pressed button from the buffer.
659
Takes away the code of the pressed button from the buffer.
660
Parameters:
660
Parameters:
661
  * eax = 17 - function number
661
  * eax = 17 - function number
662
Returned value:
662
Returned value:
663
  * if the buffer is empty, function returns eax=1
663
  * if the buffer is empty, function returns eax=1
664
  * if the buffer is not empty:
664
  * if the buffer is not empty:
665
    * high 24 bits of eax contain button identifier (in particular,
665
    * high 24 bits of eax contain button identifier (in particular,
666
      ah contains low byte of the identifier; if all buttons have
666
      ah contains low byte of the identifier; if all buttons have
667
      the identifier less than 256, ah is enough to distinguish)
667
      the identifier less than 256, ah is enough to distinguish)
668
    * al = 0 - the button was pressed with left mouse button
668
    * al = 0 - the button was pressed with left mouse button
669
    * al = bit corresponding to used mouse button otherwise
669
    * al = bit corresponding to used mouse button otherwise
670
Remarks:
670
Remarks:
671
  * "Buffer" keeps only one button, at pressing the new button the
671
  * "Buffer" keeps only one button, at pressing the new button the
672
    information about old is lost.
672
    information about old is lost.
673
  * The call of this function by an application with inactive window
673
  * The call of this function by an application with inactive window
674
    will return answer "buffer is empty".
674
    will return answer "buffer is empty".
675
  * Returned value for al corresponds to the state of mouse buttons
675
  * Returned value for al corresponds to the state of mouse buttons
676
    as in subfunction 2 of function 37 at the beginning
676
    as in subfunction 2 of function 37 at the beginning
677
    of button press, excluding lower bit, which is cleared.
677
    of button press, excluding lower bit, which is cleared.
678
 
678
 
679
---------------------- Constants for registers: ----------------------
679
---------------------- Constants for registers: ----------------------
680
  eax - SF_GET_BUTTON (17)
680
  eax - SF_GET_BUTTON (17)
681
======================================================================
681
======================================================================
682
===================== Function 18, subfunction 1 =====================
682
===================== Function 18, subfunction 1 =====================
683
============= Make deactive the window of the given thread. ==========
683
============= Make deactive the window of the given thread. ==========
684
======================================================================
684
======================================================================
685
Parameters:
685
Parameters:
686
  * eax = 18 - function number
686
  * eax = 18 - function number
687
  * ebx = 1 - subfunction number
687
  * ebx = 1 - subfunction number
688
  * ecx = number of the thread slot
688
  * ecx = number of the thread slot
689
Returned value:
689
Returned value:
690
  * function does not return value
690
  * function does not return value
691
 
691
 
692
---------------------- Constants for registers: ----------------------
692
---------------------- Constants for registers: ----------------------
693
  eax - SF_SYSTEM (18)
693
  eax - SF_SYSTEM (18)
694
  ebx - SSF_UNFOCUS_WINDOW (1)
694
  ebx - SSF_UNFOCUS_WINDOW (1)
695
======================================================================
695
======================================================================
696
= Function 18, subfunction 2 - terminate process/thread by the slot. =
696
= Function 18, subfunction 2 - terminate process/thread by the slot. =
697
======================================================================
697
======================================================================
698
Parameters:
698
Parameters:
699
  * eax = 18 - function number
699
  * eax = 18 - function number
700
  * ebx = 2 - subfunction number
700
  * ebx = 2 - subfunction number
701
  * ecx = number of the slot of process/thread
701
  * ecx = number of the slot of process/thread
702
Returned value:
702
Returned value:
703
  * function does not return value
703
  * function does not return value
704
Remarks:
704
Remarks:
705
  * It is impossible to terminate system thread OS/IDLE (with
705
  * It is impossible to terminate system thread OS/IDLE (with
706
    number of the slot 1),
706
    number of the slot 1),
707
    it is possible to terminate any normal process/thread.
707
    it is possible to terminate any normal process/thread.
708
  * See also subfunction 18 - terminate
708
  * See also subfunction 18 - terminate
709
    process/thread by the identifier.
709
    process/thread by the identifier.
710
 
710
 
711
---------------------- Constants for registers: ----------------------
711
---------------------- Constants for registers: ----------------------
712
  eax - SF_SYSTEM (18)
712
  eax - SF_SYSTEM (18)
713
  ebx - SSF_TERMINATE_THREAD (2)
713
  ebx - SSF_TERMINATE_THREAD (2)
714
======================================================================
714
======================================================================
715
===================== Function 18, subfunction 3 =====================
715
===================== Function 18, subfunction 3 =====================
716
============= Make active the window of the given thread. ============
716
============= Make active the window of the given thread. ============
717
======================================================================
717
======================================================================
718
Parameters:
718
Parameters:
719
  * eax = 18 - function number
719
  * eax = 18 - function number
720
  * ebx = 3 - subfunction number
720
  * ebx = 3 - subfunction number
721
  * ecx = number of the thread slot
721
  * ecx = number of the thread slot
722
Returned value:
722
Returned value:
723
  * function does not return value
723
  * function does not return value
724
Remarks:
724
Remarks:
725
  * If correct, but nonexistent slot is given,
725
  * If correct, but nonexistent slot is given,
726
    some window is made active.
726
    some window is made active.
727
  * To find out, which window is active, use subfunction 7.
727
  * To find out, which window is active, use subfunction 7.
728
 
728
 
729
---------------------- Constants for registers: ----------------------
729
---------------------- Constants for registers: ----------------------
730
  eax - SF_SYSTEM (18)
730
  eax - SF_SYSTEM (18)
731
  ebx - SSF_FOCUS_WINDOW (3)
731
  ebx - SSF_FOCUS_WINDOW (3)
732
======================================================================
732
======================================================================
733
===================== Function 18, subfunction 4 =====================
733
===================== Function 18, subfunction 4 =====================
734
=========== Get counter of idle time units per one second. ===========
734
=========== Get counter of idle time units per one second. ===========
735
======================================================================
735
======================================================================
736
Idle time units are units, in which the processor stands idle
736
Idle time units are units, in which the processor stands idle
737
in waiting for interrupt (in the command 'hlt').
737
in waiting for interrupt (in the command 'hlt').
738
 
738
 
739
Parameters:
739
Parameters:
740
  * eax = 18 - function number
740
  * eax = 18 - function number
741
  * ebx = 4 - subfunction number
741
  * ebx = 4 - subfunction number
742
Returned value:
742
Returned value:
743
  * eax = value of the counter of idle time units per one second
743
  * eax = value of the counter of idle time units per one second
744
 
744
 
745
---------------------- Constants for registers: ----------------------
745
---------------------- Constants for registers: ----------------------
746
  eax - SF_SYSTEM (18)
746
  eax - SF_SYSTEM (18)
747
  ebx - SSF_GET_IDLE_COUNT (4)
747
  ebx - SSF_GET_IDLE_COUNT (4)
748
======================================================================
748
======================================================================
749
========== Function 18, subfunction 5 - get CPU clock rate. ==========
749
========== Function 18, subfunction 5 - get CPU clock rate. ==========
750
======================================================================
750
======================================================================
751
Parameters:
751
Parameters:
752
  * eax = 18 - function number
752
  * eax = 18 - function number
753
  * ebx = 5 - subfunction number
753
  * ebx = 5 - subfunction number
754
Returned value:
754
Returned value:
755
  * eax = clock rate (modulo 2^32 clock ticks = 4GHz)
755
  * eax = clock rate (modulo 2^32 clock ticks = 4GHz)
756
 
756
 
757
---------------------- Constants for registers: ----------------------
757
---------------------- Constants for registers: ----------------------
758
  eax - SF_SYSTEM (18)
758
  eax - SF_SYSTEM (18)
759
  ebx - SSF_GET_CPU_FREQUENCY (5)
759
  ebx - SSF_GET_CPU_FREQUENCY (5)
760
======================================================================
760
======================================================================
761
 Function 18, subfunction 6 - save ramdisk to the file on hard drive.
761
 Function 18, subfunction 6 - save ramdisk to the file on hard drive.
762
======================================================================
762
======================================================================
763
Parameters:
763
Parameters:
764
  * eax = 18 - function number
764
  * eax = 18 - function number
765
  * ebx = 6 - subfunction number
765
  * ebx = 6 - subfunction number
766
  * ecx = pointer to the full path to file
766
  * ecx = pointer to the full path to file
767
    (for example, "/hd0/1/kolibri/kolibri.img")
767
    (for example, "/hd0/1/kolibri/kolibri.img")
768
Returned value:
768
Returned value:
769
  * eax = 0 - success
769
  * eax = 0 - success
770
  * else eax = error code of the file system
770
  * else eax = error code of the file system
771
Remarks:
771
Remarks:
772
  * All folders in the given path must exist, otherwise function
772
  * All folders in the given path must exist, otherwise function
773
    returns value 5, "file not found".
773
    returns value 5, "file not found".
774
 
774
 
775
---------------------- Constants for registers: ----------------------
775
---------------------- Constants for registers: ----------------------
776
  eax - SF_SYSTEM (18)
776
  eax - SF_SYSTEM (18)
777
  ebx - SSF_RD_TO_HDD (6)
777
  ebx - SSF_RD_TO_HDD (6)
778
======================================================================
778
======================================================================
779
=========== Function 18, subfunction 7 - get active window. ==========
779
=========== Function 18, subfunction 7 - get active window. ==========
780
======================================================================
780
======================================================================
781
Parameters:
781
Parameters:
782
  * eax = 18 - function number
782
  * eax = 18 - function number
783
  * ebx = 7 - subfunction number
783
  * ebx = 7 - subfunction number
784
Returned value:
784
Returned value:
785
  * eax = number of the active window
785
  * eax = number of the active window
786
    (number of the slot of the thread with active window)
786
    (number of the slot of the thread with active window)
787
Remarks:
787
Remarks:
788
  * Active window is at the top of the window stack and receives
788
  * Active window is at the top of the window stack and receives
789
    messages on all keyboard input.
789
    messages on all keyboard input.
790
  * To make a window active, use subfunction 3.
790
  * To make a window active, use subfunction 3.
791
 
791
 
792
---------------------- Constants for registers: ----------------------
792
---------------------- Constants for registers: ----------------------
793
  eax - SF_SYSTEM (18)
793
  eax - SF_SYSTEM (18)
794
  ebx - SSF_GET_ACTIVE_WINDOW (7)
794
  ebx - SSF_GET_ACTIVE_WINDOW (7)
795
======================================================================
795
======================================================================
796
== Function 18, subfunction 8 - disable/enable the internal speaker. =
796
== Function 18, subfunction 8 - disable/enable the internal speaker. =
797
======================================================================
797
======================================================================
798
If speaker sound is disabled, all calls to subfunction 55 of
798
If speaker sound is disabled, all calls to subfunction 55 of
799
function 55 are ignored. If speaker sound is enabled,
799
function 55 are ignored. If speaker sound is enabled,
800
they are routed on builtin speaker.
800
they are routed on builtin speaker.
801
 
801
 
802
------------------- Subsubfunction 1 - get status. -------------------
802
------------------- Subsubfunction 1 - get status. -------------------
803
Parameters:
803
Parameters:
804
  * eax = 18 - function number
804
  * eax = 18 - function number
805
  * ebx = 8 - subfunction number
805
  * ebx = 8 - subfunction number
806
  * ecx = 1 - number of the subsubfunction
806
  * ecx = 1 - number of the subsubfunction
807
Returned value:
807
Returned value:
808
  * eax = 0 - speaker sound is enabled; 1 - disabled
808
  * eax = 0 - speaker sound is enabled; 1 - disabled
809
 
809
 
810
----------------- Subsubfunction 2 - toggle status. ------------------
810
----------------- Subsubfunction 2 - toggle status. ------------------
811
Toggles states of disable/enable.
811
Toggles states of disable/enable.
812
Parameters:
812
Parameters:
813
  * eax = 18 - function number
813
  * eax = 18 - function number
814
  * ebx = 8 - subfunction number
814
  * ebx = 8 - subfunction number
815
  * ecx = 2 - number of the subsubfunction
815
  * ecx = 2 - number of the subsubfunction
816
Returned value:
816
Returned value:
817
  * function does not return value
817
  * function does not return value
818
 
818
 
819
---------------------- Constants for registers: ----------------------
819
---------------------- Constants for registers: ----------------------
820
  eax - SF_SYSTEM (18)
820
  eax - SF_SYSTEM (18)
821
  ebx - SSF_SPEAKER (8)
821
  ebx - SSF_SPEAKER (8)
822
  ecx - SSSF_GET_STATE (1), SSSF_TOGGLE (2)
822
  ecx - SSSF_GET_STATE (1), SSSF_TOGGLE (2)
823
======================================================================
823
======================================================================
824
== Function 18, subfunction 9 - system shutdown with the parameter. ==
824
== Function 18, subfunction 9 - system shutdown with the parameter. ==
825
======================================================================
825
======================================================================
826
Parameters:
826
Parameters:
827
  * eax = 18 - function number
827
  * eax = 18 - function number
828
  * ebx = 9 - subfunction number
828
  * ebx = 9 - subfunction number
829
  * ecx = parameter:
829
  * ecx = parameter:
830
    * 2 = turn off computer
830
    * 2 = turn off computer
831
    * 3 = reboot computer
831
    * 3 = reboot computer
832
    * 4 = restart the kernel from the file 'kernel.mnt' on ramdisk
832
    * 4 = restart the kernel from the file 'kernel.mnt' on ramdisk
833
Returned value:
833
Returned value:
834
  * at incorrect ecx the registers do not change (i.e. eax=18)
834
  * at incorrect ecx the registers do not change (i.e. eax=18)
835
  * by correct call function always returns eax=0
835
  * by correct call function always returns eax=0
836
    as the tag of success
836
    as the tag of success
837
Remarks:
837
Remarks:
838
  * Do not rely on returned value by incorrect call, it can be
838
  * Do not rely on returned value by incorrect call, it can be
839
    changed in future versions of the kernel.
839
    changed in future versions of the kernel.
840
 
840
 
841
---------------------- Constants for registers: ----------------------
841
---------------------- Constants for registers: ----------------------
842
  eax - SF_SYSTEM (18)
842
  eax - SF_SYSTEM (18)
843
  ebx - SSF_SHUTDOWN (9)
843
  ebx - SSF_SHUTDOWN (9)
844
======================================================================
844
======================================================================
845
======= Function 18, subfunction 10 - minimize topmost window. =======
845
======= Function 18, subfunction 10 - minimize topmost window. =======
846
======================================================================
846
======================================================================
847
Minimizes the topmost (active) window.
847
Minimizes the topmost (active) window.
848
Parameters:
848
Parameters:
849
  * eax = 18 - function number
849
  * eax = 18 - function number
850
  * ebx = 10 - subfunction number
850
  * ebx = 10 - subfunction number
851
Returned value:
851
Returned value:
852
  * function does not return value
852
  * function does not return value
853
Remarks:
853
Remarks:
854
  * The minimized window from the point of view of function 9
854
  * The minimized window from the point of view of function 9
855
    keeps position and sizes.
855
    keeps position and sizes.
856
  * Restoring of an application window occurs at its activation by
856
  * Restoring of an application window occurs at its activation by
857
    subfunction 3.
857
    subfunction 3.
858
  * Usually there is no necessity to minimize/restore a window
858
  * Usually there is no necessity to minimize/restore a window
859
    explicitly: minimization of a window is carried out by the system
859
    explicitly: minimization of a window is carried out by the system
860
    at pressing the minimization button (for skinned windows
860
    at pressing the minimization button (for skinned windows
861
    it is defined automatically by function 0,
861
    it is defined automatically by function 0,
862
    for other windows it can be defined manually by function 8),
862
    for other windows it can be defined manually by function 8),
863
    restore of a window is done by the application '@taskbar'.
863
    restore of a window is done by the application '@taskbar'.
864
 
864
 
865
---------------------- Constants for registers: ----------------------
865
---------------------- Constants for registers: ----------------------
866
  eax - SF_SYSTEM (18)
866
  eax - SF_SYSTEM (18)
867
  ebx - SSF_MINIMIZE_WINDOW (10)
867
  ebx - SSF_MINIMIZE_WINDOW (10)
868
======================================================================
868
======================================================================
869
 Function 18, subfunction 11 - get information on the disk subsystem.
869
 Function 18, subfunction 11 - get information on the disk subsystem.
870
======================================================================
870
======================================================================
871
Parameters:
871
Parameters:
872
  * eax = 18 - function number
872
  * eax = 18 - function number
873
  * ebx = 11 - subfunction number
873
  * ebx = 11 - subfunction number
874
  * ecx = type of the table:
874
  * ecx = type of the table:
875
    * 1 = short version, 16 bytes
875
    * 1 = short version, 16 bytes
876
  * edx = pointer to the buffer (in the application) for the table
876
  * edx = pointer to the buffer (in the application) for the table
877
Returned value:
877
Returned value:
878
  * function does not return value
878
  * function does not return value
879
Format of the table: short version:
879
Format of the table: short version:
880
  * +0: byte: information about FDD's (drives for floppies),
880
  * +0: byte: information about FDD's (drives for floppies),
881
    AAAABBBB, where AAAA gives type of the first drive, BBBB -
881
    AAAABBBB, where AAAA gives type of the first drive, BBBB -
882
    of the second regarding to the following list:
882
    of the second regarding to the following list:
883
    * 0 = there is no drive
883
    * 0 = there is no drive
884
    * 1 = 360Kb, 5.25''
884
    * 1 = 360Kb, 5.25''
885
    * 2 = 1.2Mb, 5.25''
885
    * 2 = 1.2Mb, 5.25''
886
    * 3 = 720Kb, 3.5''
886
    * 3 = 720Kb, 3.5''
887
    * 4 = 1.44Mb, 3.5''
887
    * 4 = 1.44Mb, 3.5''
888
    * 5 = 2.88Mb, 3.5'' (such drives are not used anymore)
888
    * 5 = 2.88Mb, 3.5'' (such drives are not used anymore)
889
    For example, for the standard configuration from one 1.44-drive
889
    For example, for the standard configuration from one 1.44-drive
890
    here will be 40h, and for the case 1.2Mb on A: and 1.44Mb on B:
890
    here will be 40h, and for the case 1.2Mb on A: and 1.44Mb on B:
891
    the value is 24h.
891
    the value is 24h.
892
 
892
 
893
  First IDE controller:
893
  First IDE controller:
894
  * +1: byte: information about hard disks and CD-drives, AABBCCDD,
894
  * +1: byte: information about hard disks and CD-drives, AABBCCDD,
895
    where AA corresponds to the controller IDE0, ..., DD - IDE3:
895
    where AA corresponds to the controller IDE0, ..., DD - IDE3:
896
    * 0 = device not found
896
    * 0 = device not found
897
    * 1 = hard drive
897
    * 1 = hard drive
898
    * 2 = CD-drive
898
    * 2 = CD-drive
899
    For example, in the case HD on IDE0 and CD on IDE2
899
    For example, in the case HD on IDE0 and CD on IDE2
900
    this field contains 48h.
900
    this field contains 48h.
901
  * +2: 4 db: number of the retrieved partitions on hard disks
901
  * +2: 4 db: number of the retrieved partitions on hard disks
902
    at accordingly IDE0,...,IDE3.
902
    at accordingly IDE0,...,IDE3.
903
 
903
 
904
  Second IDE controller:
904
  Second IDE controller:
905
  * +6: byte: information about hard disks and CD-drives, AABBCCDD,
905
  * +6: byte: information about hard disks and CD-drives, AABBCCDD,
906
    where AA corresponds to the controller IDE4, ..., DD - IDE7:
906
    where AA corresponds to the controller IDE4, ..., DD - IDE7:
907
    * 0 = device not found
907
    * 0 = device not found
908
    * 1 = hard drive
908
    * 1 = hard drive
909
    * 2 = CD-drive
909
    * 2 = CD-drive
910
    For example, in the case HD on IDE4 and CD on IDE6
910
    For example, in the case HD on IDE4 and CD on IDE6
911
    this field contains 48h.
911
    this field contains 48h.
912
  * +7: 4 db: number of the retrieved partitions on hard disks
912
  * +7: 4 db: number of the retrieved partitions on hard disks
913
    at accordingly IDE4,...,IDE7.
913
    at accordingly IDE4,...,IDE7.
914
 
914
 
915
  Third IDE controller:
915
  Third IDE controller:
916
  * +11: byte: information about hard disks and CD-drives, AABBCCDD,
916
  * +11: byte: information about hard disks and CD-drives, AABBCCDD,
917
    where AA corresponds to the controller IDE8, ..., DD - IDE11:
917
    where AA corresponds to the controller IDE8, ..., DD - IDE11:
918
    * 0 = device not found
918
    * 0 = device not found
919
    * 1 = hard drive
919
    * 1 = hard drive
920
    * 2 = CD-drive
920
    * 2 = CD-drive
921
    For example, in the case HD on IDE8 and CD on IDE10
921
    For example, in the case HD on IDE8 and CD on IDE10
922
    this field contains 48h.
922
    this field contains 48h.
923
  * +12: 4 db: number of the retrieved partitions on hard disks
923
  * +12: 4 db: number of the retrieved partitions on hard disks
924
    at accordingly IDE8,...,IDE11.
924
    at accordingly IDE8,...,IDE11.
925
 
925
 
926
    If the hard disk on IDEx is absent, appropriate byte is zero,
926
    If the hard disk on IDEx is absent, appropriate byte is zero,
927
    otherwise it shows number of the recognized partitions, which
927
    otherwise it shows number of the recognized partitions, which
928
    can be not presented (if the drive is not formatted or if
928
    can be not presented (if the drive is not formatted or if
929
    the file system is not supported). Current version of the kernel
929
    the file system is not supported). Current version of the kernel
930
    supports only FAT12/16/32, NTFS, ext2/3/4 and XFS for hard disks.
930
    supports only FAT12/16/32, NTFS, ext2/3/4 and XFS for hard disks.
931
 
931
 
932
Remarks:
932
Remarks:
933
  * The table can be used for obtaining the information about
933
  * The table can be used for obtaining the information about
934
    available devices.
934
    available devices.
935
 
935
 
936
---------------------- Constants for registers: ----------------------
936
---------------------- Constants for registers: ----------------------
937
  eax - SF_SYSTEM (18)
937
  eax - SF_SYSTEM (18)
938
  ebx - SSF_INFO_DISC_SYS (11)
938
  ebx - SSF_INFO_DISC_SYS (11)
939
======================================================================
939
======================================================================
940
========== Function 18, subfunction 13 - get kernel version. =========
940
========== Function 18, subfunction 13 - get kernel version. =========
941
======================================================================
941
======================================================================
942
Parameters:
942
Parameters:
943
  * eax = 18 - function number
943
  * eax = 18 - function number
944
  * ebx = 13 - subfunction number
944
  * ebx = 13 - subfunction number
945
  * ecx = pointer to the buffer (not less than 16 bytes), where
945
  * ecx = pointer to the buffer (not less than 16 bytes), where
946
    the information will be placed
946
    the information will be placed
947
Returned value:
947
Returned value:
948
  * function does not return value
948
  * function does not return value
949
Structure of the buffer:
949
Structure of the buffer:
950
db a,b,c,d for version a.b.c.d
950
db a,b,c,d for version a.b.c.d
951
db 0: reserved
951
db 0: reserved
952
dd REV - kernel SVN revision number
952
dd REV - kernel SVN revision number
953
For Kolibri 0.7.7.0+ kernel:
953
For Kolibri 0.7.7.0+ kernel:
954
db 0,7,7,0
954
db 0,7,7,0
955
db 0
955
db 0
956
dd 1675
956
dd 1675
957
 
957
 
958
---------------------- Constants for registers: ----------------------
958
---------------------- Constants for registers: ----------------------
959
  eax - SF_SYSTEM (18)
959
  eax - SF_SYSTEM (18)
960
  ebx - SSF_KERNEL_VERSION (13)
960
  ebx - SSF_KERNEL_VERSION (13)
961
======================================================================
961
======================================================================
962
======= Function 18, subfunction 14 - wait for screen retrace. =======
962
======= Function 18, subfunction 14 - wait for screen retrace. =======
963
======================================================================
963
======================================================================
964
Waits for the beginning of retrace of the scanning ray of the screen
964
Waits for the beginning of retrace of the scanning ray of the screen
965
monitor.
965
monitor.
966
Parameters:
966
Parameters:
967
  * eax = 18 - function number
967
  * eax = 18 - function number
968
  * ebx = 14 - subfunction number
968
  * ebx = 14 - subfunction number
969
Returned value:
969
Returned value:
970
  * eax = 0 as the tag of success
970
  * eax = 0 as the tag of success
971
Remarks:
971
Remarks:
972
  * Function is intended only for active high-efficiency graphics
972
  * Function is intended only for active high-efficiency graphics
973
    applications; is used for smooth output of a graphics.
973
    applications; is used for smooth output of a graphics.
974
 
974
 
975
---------------------- Constants for registers: ----------------------
975
---------------------- Constants for registers: ----------------------
976
  eax - SF_SYSTEM (18)
976
  eax - SF_SYSTEM (18)
977
  ebx - SSF_WAIT_RETRACE (14)
977
  ebx - SSF_WAIT_RETRACE (14)
978
======================================================================
978
======================================================================
979
== Function 18, subfunction 15 - center mouse cursor on the screen. ==
979
== Function 18, subfunction 15 - center mouse cursor on the screen. ==
980
======================================================================
980
======================================================================
981
Parameters:
981
Parameters:
982
  * eax = 18 - function number
982
  * eax = 18 - function number
983
  * ebx = 15 - subfunction number
983
  * ebx = 15 - subfunction number
984
Returned value:
984
Returned value:
985
  * eax = 0 as the tag of success
985
  * eax = 0 as the tag of success
986
 
986
 
987
---------------------- Constants for registers: ----------------------
987
---------------------- Constants for registers: ----------------------
988
  eax - SF_SYSTEM (18)
988
  eax - SF_SYSTEM (18)
989
  ebx - SSF_CURSOR_CENTER (15)
989
  ebx - SSF_CURSOR_CENTER (15)
990
======================================================================
990
======================================================================
991
========= Function 18, subfunction 16 - get size of free RAM. ========
991
========= Function 18, subfunction 16 - get size of free RAM. ========
992
======================================================================
992
======================================================================
993
Parameters:
993
Parameters:
994
  * eax = 18 - function number
994
  * eax = 18 - function number
995
  * ebx = 16 - subfunction number
995
  * ebx = 16 - subfunction number
996
Returned value:
996
Returned value:
997
  * eax = size of free memory in kilobytes
997
  * eax = size of free memory in kilobytes
998
 
998
 
999
---------------------- Constants for registers: ----------------------
999
---------------------- Constants for registers: ----------------------
1000
  eax - SF_SYSTEM (18)
1000
  eax - SF_SYSTEM (18)
1001
  ebx - SSF_GET_FREE_RAM (16)
1001
  ebx - SSF_GET_FREE_RAM (16)
1002
======================================================================
1002
======================================================================
1003
======== Function 18, subfunction 17 - get full amount of RAM. =======
1003
======== Function 18, subfunction 17 - get full amount of RAM. =======
1004
======================================================================
1004
======================================================================
1005
Parameters:
1005
Parameters:
1006
  * eax = 18 - function number
1006
  * eax = 18 - function number
1007
  * ebx = 17 - subfunction number
1007
  * ebx = 17 - subfunction number
1008
Returned value:
1008
Returned value:
1009
  * eax = total size of existing memory in kilobytes
1009
  * eax = total size of existing memory in kilobytes
1010
 
1010
 
1011
---------------------- Constants for registers: ----------------------
1011
---------------------- Constants for registers: ----------------------
1012
  eax - SF_SYSTEM (18)
1012
  eax - SF_SYSTEM (18)
1013
  ebx - SSF_GET_TOTAL_RAM (17)
1013
  ebx - SSF_GET_TOTAL_RAM (17)
1014
======================================================================
1014
======================================================================
1015
===================== Function 18, subfunction 18 ====================
1015
===================== Function 18, subfunction 18 ====================
1016
============= Terminate process/thread by the identifier. ============
1016
============= Terminate process/thread by the identifier. ============
1017
======================================================================
1017
======================================================================
1018
Parameters:
1018
Parameters:
1019
  * eax = 18 - function number
1019
  * eax = 18 - function number
1020
  * ebx = 18 - subfunction number
1020
  * ebx = 18 - subfunction number
1021
  * ecx = identifer of process/thread (PID/TID)
1021
  * ecx = identifer of process/thread (PID/TID)
1022
Returned value:
1022
Returned value:
1023
  * eax = 0 - success
1023
  * eax = 0 - success
1024
  * eax = -1 - error (process is not found or is system)
1024
  * eax = -1 - error (process is not found or is system)
1025
Remarks:
1025
Remarks:
1026
  * It is impossible to terminate system thread OS/IDLE (identifier
1026
  * It is impossible to terminate system thread OS/IDLE (identifier
1027
    1), it is possible to terminate any normal process/thread.
1027
    1), it is possible to terminate any normal process/thread.
1028
  * See also subfunction 2 - terminate
1028
  * See also subfunction 2 - terminate
1029
    process/thread by given slot.
1029
    process/thread by given slot.
1030
 
1030
 
1031
---------------------- Constants for registers: ----------------------
1031
---------------------- Constants for registers: ----------------------
1032
  eax - SF_SYSTEM (18)
1032
  eax - SF_SYSTEM (18)
1033
  ebx - SSF_TERMINATE_THREAD_ID (18)
1033
  ebx - SSF_TERMINATE_THREAD_ID (18)
1034
======================================================================
1034
======================================================================
1035
======== Function 18, subfunction 19 - get/set mouse features. =======
1035
======== Function 18, subfunction 19 - get/set mouse features. =======
1036
======================================================================
1036
======================================================================
1037
 
1037
 
1038
---------------- Subsubfunction 0 - get mouse speed. -----------------
1038
---------------- Subsubfunction 0 - get mouse speed. -----------------
1039
Parameters:
1039
Parameters:
1040
  * eax = 18 - function number
1040
  * eax = 18 - function number
1041
  * ebx = 19 - subfunction number
1041
  * ebx = 19 - subfunction number
1042
  * ecx = 0 - subsubfunction number
1042
  * ecx = 0 - subsubfunction number
1043
Returned value:
1043
Returned value:
1044
  * eax = current speed divider
1044
  * eax = current speed divider
1045
 
1045
 
1046
---------------- Subsubfunction 1 - set mouse speed. -----------------
1046
---------------- Subsubfunction 1 - set mouse speed. -----------------
1047
Parameters:
1047
Parameters:
1048
  * eax = 18 - function number
1048
  * eax = 18 - function number
1049
  * ebx = 19 - subfunction number
1049
  * ebx = 19 - subfunction number
1050
  * ecx = 1 - subsubfunction number
1050
  * ecx = 1 - subsubfunction number
1051
  * edx = new value for speed divider
1051
  * edx = new value for speed divider
1052
Returned value:
1052
Returned value:
1053
  * function does not return value
1053
  * function does not return value
1054
 
1054
 
1055
Remark: recommended speed divider = 4
1055
Remark: recommended speed divider = 4
1056
 
1056
 
1057
-------------- Subsubfunction 2 - get mouse sensitivity --------------
1057
-------------- Subsubfunction 2 - get mouse sensitivity --------------
1058
Parameters:
1058
Parameters:
1059
  * eax = 18 - function number
1059
  * eax = 18 - function number
1060
  * ebx = 19 - subfunction number
1060
  * ebx = 19 - subfunction number
1061
  * ecx = 2 - subsubfunction number
1061
  * ecx = 2 - subsubfunction number
1062
Returned value:
1062
Returned value:
1063
  * eax = current sensitivity
1063
  * eax = current sensitivity
1064
 
1064
 
1065
-------------- Subsubfunction 3 - set mouse sensitivity --------------
1065
-------------- Subsubfunction 3 - set mouse sensitivity --------------
1066
Parameters:
1066
Parameters:
1067
  * eax = 18 - function number
1067
  * eax = 18 - function number
1068
  * ebx = 19 - subfunction number
1068
  * ebx = 19 - subfunction number
1069
  * ecx = 3 - subsubfunction number
1069
  * ecx = 3 - subsubfunction number
1070
  * edx = new value for sensitivity
1070
  * edx = new value for sensitivity
1071
Returned value:
1071
Returned value:
1072
  * function does not return value
1072
  * function does not return value
1073
 
1073
 
1074
Remark: recommended sensitivity = 3
1074
Remark: recommended sensitivity = 3
1075
 
1075
 
1076
----------- Subsubfunction 4 - set mouse pointer position. -----------
1076
----------- Subsubfunction 4 - set mouse pointer position. -----------
1077
Parameters:
1077
Parameters:
1078
  * eax = 18 - function number
1078
  * eax = 18 - function number
1079
  * ebx = 19 - subfunction number
1079
  * ebx = 19 - subfunction number
1080
  * ecx = 4 - subsubfunction number
1080
  * ecx = 4 - subsubfunction number
1081
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1081
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1082
Returned value:
1082
Returned value:
1083
  * function does not return value
1083
  * function does not return value
1084
 
1084
 
1085
-------- Subsubfunction 5 - simulate state of mouse buttons. ---------
1085
-------- Subsubfunction 5 - simulate state of mouse buttons. ---------
1086
Parameters:
1086
Parameters:
1087
  * eax = 18 - function number
1087
  * eax = 18 - function number
1088
  * ebx = 19 - subfunction number
1088
  * ebx = 19 - subfunction number
1089
  * ecx = 5 - subsubfunction number
1089
  * ecx = 5 - subsubfunction number
1090
  * edx = information about emulated state of mouse buttons:
1090
  * edx = information about emulated state of mouse buttons:
1091
    (same as return value in subfunction 2 of function 37)
1091
    (same as return value in subfunction 2 of function 37)
1092
    * bit 0 is set = left button is pressed
1092
    * bit 0 is set = left button is pressed
1093
    * bit 1 is set = right button is pressed
1093
    * bit 1 is set = right button is pressed
1094
    * bit 2 is set = middle button is pressed
1094
    * bit 2 is set = middle button is pressed
1095
    * bit 3 is set = 4th button is pressed
1095
    * bit 3 is set = 4th button is pressed
1096
    * bit 4 is set = 5th button is pressed
1096
    * bit 4 is set = 5th button is pressed
1097
Returned value:
1097
Returned value:
1098
  * function does not return value
1098
  * function does not return value
1099
 
1099
 
1100
-------------- Subsubfunction 6 - get doubleclick delay. -------------
1100
-------------- Subsubfunction 6 - get doubleclick delay. -------------
1101
Parameters:
1101
Parameters:
1102
  * eax = 18 - function number
1102
  * eax = 18 - function number
1103
  * ebx = 19 - subfunction number
1103
  * ebx = 19 - subfunction number
1104
  * ecx = 6 - subsubfunction number
1104
  * ecx = 6 - subsubfunction number
1105
Returned value:
1105
Returned value:
1106
  * eax = current doubleclick delay (100 = 1 second)
1106
  * eax = current doubleclick delay (100 = 1 second)
1107
 
1107
 
1108
-------------- Subsubfunction 7 - set doubleclick delay. -------------
1108
-------------- Subsubfunction 7 - set doubleclick delay. -------------
1109
Parameters:
1109
Parameters:
1110
  * eax = 18 - function number
1110
  * eax = 18 - function number
1111
  * ebx = 19 - subfunction number
1111
  * ebx = 19 - subfunction number
1112
  * ecx = 7 - subsubfunction number
1112
  * ecx = 7 - subsubfunction number
1113
  * dl  = new value for doubleclick delay (100 = 1 second)
1113
  * dl  = new value for doubleclick delay (100 = 1 second)
1114
Returned value:
1114
Returned value:
1115
  * function does not return value
1115
  * function does not return value
1116
 
1116
 
1117
Remark: mouse settings can be modified in the application mouse_cfg.
1117
Remark: mouse settings can be modified in the application mouse_cfg.
1118
 
1118
 
1119
---------------------- Constants for registers: ----------------------
1119
---------------------- Constants for registers: ----------------------
1120
  eax - SF_SYSTEM (18)
1120
  eax - SF_SYSTEM (18)
1121
  ebx - SSF_MOUSE_SETTINGS (19)
1121
  ebx - SSF_MOUSE_SETTINGS (19)
1122
  ecx - SSSF_GET_SPEED (0), SSSF_SET_SPEED (1), SSSF_GET_SPEEDUP (2),
1122
  ecx - SSSF_GET_SPEED (0), SSSF_SET_SPEED (1), SSSF_GET_SPEEDUP (2),
1123
    SSSF_SET_SPEEDUP (3), SSSF_SET_POS (4), SSSF_SET_BUTTON (5),
1123
    SSSF_SET_SPEEDUP (3), SSSF_SET_POS (4), SSSF_SET_BUTTON (5),
1124
    SSSF_GET_DOUBLE_CLICK_DELAY (6), SSSF_SET_DOUBLE_CLICK_DELAY (7)
1124
    SSSF_GET_DOUBLE_CLICK_DELAY (6), SSSF_SET_DOUBLE_CLICK_DELAY (7)
1125
======================================================================
1125
======================================================================
1126
======== Function 18, subfunction 20 - get information on RAM. =======
1126
======== Function 18, subfunction 20 - get information on RAM. =======
1127
======================================================================
1127
======================================================================
1128
Parameters:
1128
Parameters:
1129
  * eax = 18 - function number
1129
  * eax = 18 - function number
1130
  * ebx = 20 - subfunction number
1130
  * ebx = 20 - subfunction number
1131
  * ecx = pointer to the buffer for information (36 bytes)
1131
  * ecx = pointer to the buffer for information (36 bytes)
1132
Returned value:
1132
Returned value:
1133
  * eax = total size of existing RAM in pages
1133
  * eax = total size of existing RAM in pages
1134
    or -1 if error has occured
1134
    or -1 if error has occured
1135
  * buffer pointed to by ecx contains the following information:
1135
  * buffer pointed to by ecx contains the following information:
1136
    * +0:  dword: total size of existing RAM in pages
1136
    * +0:  dword: total size of existing RAM in pages
1137
    * +4:  dword: size of free RAM in pages
1137
    * +4:  dword: size of free RAM in pages
1138
    * +8:  dword: number of page faults (exceptions #PF)
1138
    * +8:  dword: number of page faults (exceptions #PF)
1139
                 in applications
1139
                 in applications
1140
    * +12: dword: size of kernel heap in bytes
1140
    * +12: dword: size of kernel heap in bytes
1141
    * +16: dword: free in kernel heap in bytes
1141
    * +16: dword: free in kernel heap in bytes
1142
    * +20: dword: total number of memory blocks in kernel heap
1142
    * +20: dword: total number of memory blocks in kernel heap
1143
    * +24: dword: number of free memory blocks in kernel heap
1143
    * +24: dword: number of free memory blocks in kernel heap
1144
    * +28: dword: size of maximum free block in kernel heap
1144
    * +28: dword: size of maximum free block in kernel heap
1145
                 (reserved)
1145
                 (reserved)
1146
    * +32: dword: size of maximum allocated block in kernel heap
1146
    * +32: dword: size of maximum allocated block in kernel heap
1147
                 (reserved)
1147
                 (reserved)
1148
 
1148
 
1149
---------------------- Constants for registers: ----------------------
1149
---------------------- Constants for registers: ----------------------
1150
  eax - SF_SYSTEM (18)
1150
  eax - SF_SYSTEM (18)
1151
  ebx - SSF_GET_RAM_INFO (20)
1151
  ebx - SSF_GET_RAM_INFO (20)
1152
======================================================================
1152
======================================================================
1153
===================== Function 18, subfunction 21 ====================
1153
===================== Function 18, subfunction 21 ====================
1154
======== Get slot number of process/thread by the identifier. ========
1154
======== Get slot number of process/thread by the identifier. ========
1155
======================================================================
1155
======================================================================
1156
Parameters:
1156
Parameters:
1157
  * eax = 18 - function number
1157
  * eax = 18 - function number
1158
  * ebx = 21 - subfunction number
1158
  * ebx = 21 - subfunction number
1159
  * ecx = identifer of process/thread (PID/TID)
1159
  * ecx = identifer of process/thread (PID/TID)
1160
Returned value:
1160
Returned value:
1161
  * eax = 0 - error (invalid identifier)
1161
  * eax = 0 - error (invalid identifier)
1162
  * otherwise eax = slot number
1162
  * otherwise eax = slot number
1163
 
1163
 
1164
---------------------- Constants for registers: ----------------------
1164
---------------------- Constants for registers: ----------------------
1165
  eax - SF_SYSTEM (18)
1165
  eax - SF_SYSTEM (18)
1166
  ebx - SSF_GET_THREAD_SLOT (21)
1166
  ebx - SSF_GET_THREAD_SLOT (21)
1167
======================================================================
1167
======================================================================
1168
===================== Function 18, subfunction 22 ====================
1168
===================== Function 18, subfunction 22 ====================
1169
============== Operations with window of another thread. =============
1169
============== Operations with window of another thread. =============
1170
======================================================================
1170
======================================================================
1171
Parameters:
1171
Parameters:
1172
  * eax = 18 - function number
1172
  * eax = 18 - function number
1173
  * ebx = 22 - subfunction number
1173
  * ebx = 22 - subfunction number
1174
  * ecx = operation type:
1174
  * ecx = operation type:
1175
    * 0 = minimize window of the thread with given slot number
1175
    * 0 = minimize window of the thread with given slot number
1176
    * 1 = minimize window of the thread with given identifier
1176
    * 1 = minimize window of the thread with given identifier
1177
    * 2 = restore window of the thread with given slot number
1177
    * 2 = restore window of the thread with given slot number
1178
    * 3 = restore window of the thread with given identifier
1178
    * 3 = restore window of the thread with given identifier
1179
  * edx = parameter (slot number or PID/TID)
1179
  * edx = parameter (slot number or PID/TID)
1180
Returned value:
1180
Returned value:
1181
  * eax = 0 - success
1181
  * eax = 0 - success
1182
  * eax = -1 - error (invalid identifier)
1182
  * eax = -1 - error (invalid identifier)
1183
Remarks:
1183
Remarks:
1184
  * The thread can minimize its window with subfunction 10.
1184
  * The thread can minimize its window with subfunction 10.
1185
  * One can restore and activate window simultaneously with
1185
  * One can restore and activate window simultaneously with
1186
    subfunction 3 (which requires slot number).
1186
    subfunction 3 (which requires slot number).
1187
 
1187
 
1188
---------------------- Constants for registers: ----------------------
1188
---------------------- Constants for registers: ----------------------
1189
  eax - SF_SYSTEM (18)
1189
  eax - SF_SYSTEM (18)
1190
  ebx - SSF_FOREIGN_WINDOW (22)
1190
  ebx - SSF_FOREIGN_WINDOW (22)
1191
  ecx - SSSF_MINIMIZE (0), SSSF_MINIMIZE_ID (1), SSSF_RESTORE (2),
1191
  ecx - SSSF_MINIMIZE (0), SSSF_MINIMIZE_ID (1), SSSF_RESTORE (2),
1192
    SSSF_RESTORE_ID (3)
1192
    SSSF_RESTORE_ID (3)
1193
======================================================================
1193
======================================================================
1194
======== Function 18, subfunction 23 - minimize all windows. ==========
1194
======== Function 18, subfunction 23 - minimize all windows. ==========
1195
======================================================================
1195
======================================================================
1196
Parameters:
1196
Parameters:
1197
  * eax = 18 - function number
1197
  * eax = 18 - function number
1198
  * ebx = 23 - subfunction number
1198
  * ebx = 23 - subfunction number
1199
Returned value:
1199
Returned value:
1200
  * eax = 0 - all windows have been minimized before a function call
1200
  * eax = 0 - all windows have been minimized before a function call
1201
  * eax = N - number of windows minimized from function
1201
  * eax = N - number of windows minimized from function
1202
Remarks:
1202
Remarks:
1203
  * Window of special thread (name begin to symbol @) is not minimize.
1203
  * Window of special thread (name begin to symbol @) is not minimize.
1204
 
1204
 
1205
---------------------- Constants for registers: ----------------------
1205
---------------------- Constants for registers: ----------------------
1206
  eax - SF_SYSTEM (18)
1206
  eax - SF_SYSTEM (18)
1207
  ebx - SSF_MINIMIZE_ALL (23)
1207
  ebx - SSF_MINIMIZE_ALL (23)
1208
======================================================================
1208
======================================================================
1209
======= Function 18, subfunction 24 - set limits of screen. ==========
1209
======= Function 18, subfunction 24 - set limits of screen. ==========
1210
======================================================================
1210
======================================================================
1211
Parameters:
1211
Parameters:
1212
  * eax = 18 - function number
1212
  * eax = 18 - function number
1213
  * ebx = 24 - subfunction number
1213
  * ebx = 24 - subfunction number
1214
  * ecx = new X size
1214
  * ecx = new X size
1215
  * edx = new Y size
1215
  * edx = new Y size
1216
Returned value:
1216
Returned value:
1217
  * function does not return value
1217
  * function does not return value
1218
Remarks:
1218
Remarks:
1219
  * The function does not change the physical size of the video mode.
1219
  * The function does not change the physical size of the video mode.
1220
    It is designed for non-standard displays which display the image
1220
    It is designed for non-standard displays which display the image
1221
    partially.
1221
    partially.
1222
  * The sizes specified in the function should not exceed the sizes
1222
  * The sizes specified in the function should not exceed the sizes
1223
    of the current video mode, otherwise the function will not change
1223
    of the current video mode, otherwise the function will not change
1224
    anything.
1224
    anything.
1225
 
1225
 
1226
---------------------- Constants for registers: ----------------------
1226
---------------------- Constants for registers: ----------------------
1227
  eax - SF_SYSTEM (18)
1227
  eax - SF_SYSTEM (18)
1228
  ebx - SSF_SET_SCREEN_LIMITS (24)
1228
  ebx - SSF_SET_SCREEN_LIMITS (24)
1229
======================================================================
1229
======================================================================
1230
===================== Function 18, subfunction 25 ====================
1230
===================== Function 18, subfunction 25 ====================
1231
===== Control position of the window relative to other windows. ======
1231
===== Control position of the window relative to other windows. ======
1232
======================================================================
1232
======================================================================
1233
 
1233
 
1234
------------- Subsubfunction 1 - get position  -----------------------
1234
------------- Subsubfunction 1 - get position  -----------------------
1235
Parameters:
1235
Parameters:
1236
  * eax = 18 - function number
1236
  * eax = 18 - function number
1237
  * ebx = 25 - subfunction number
1237
  * ebx = 25 - subfunction number
1238
  * ecx = 1 - subsubfunction number
1238
  * ecx = 1 - subsubfunction number
1239
  * edx = -1(for current window) or PID application
1239
  * edx = -1(for current window) or PID application
1240
Returned value:
1240
Returned value:
1241
  * eax = one of the constants window position
1241
  * eax = one of the constants window position
1242
 
1242
 
1243
------------- Subsubfunction 2 - set position  -----------------------
1243
------------- Subsubfunction 2 - set position  -----------------------
1244
Parameters:
1244
Parameters:
1245
  * eax = 18 - function number
1245
  * eax = 18 - function number
1246
  * ebx = 25 - subfunction number
1246
  * ebx = 25 - subfunction number
1247
  * ecx = 2 - subsubfunction number
1247
  * ecx = 2 - subsubfunction number
1248
  * edx = -1(for current window) or PID application
1248
  * edx = -1(for current window) or PID application
1249
  * esi = new window position (one of the constants below)
1249
  * esi = new window position (one of the constants below)
1250
Returned value:
1250
Returned value:
1251
  * eax = 0 - error
1251
  * eax = 0 - error
1252
  * eax = 1 - success
1252
  * eax = 1 - success
1253
 
1253
 
1254
Constant position of the window relative to other windows:
1254
Constant position of the window relative to other windows:
1255
 ZPOS_DESKTOP     = -2 - on the background
1255
 ZPOS_DESKTOP     = -2 - on the background
1256
 ZPOS_ALWAYS_BACK = -1 - behind all the windows
1256
 ZPOS_ALWAYS_BACK = -1 - behind all the windows
1257
 ZPOS_NORMAL      = 0  - normal
1257
 ZPOS_NORMAL      = 0  - normal
1258
 ZPOS_ALWAYS_TOP  = 1  - on top of all windows
1258
 ZPOS_ALWAYS_TOP  = 1  - on top of all windows
1259
 
1259
 
1260
---------------------- Constants for registers: ----------------------
1260
---------------------- Constants for registers: ----------------------
1261
  eax - SF_SYSTEM (18)
1261
  eax - SF_SYSTEM (18)
1262
  ebx - SSF_WINDOW_BEHAVIOR (25)
1262
  ebx - SSF_WINDOW_BEHAVIOR (25)
1263
  ecx - SSSF_GET_WB (1), SSSF_SET_WB (2)
1263
  ecx - SSSF_GET_WB (1), SSSF_SET_WB (2)
1264
======================================================================
1264
======================================================================
1265
==================== Function 20 - MIDI interface. ===================
1265
==================== Function 20 - MIDI interface. ===================
1266
======================================================================
1266
======================================================================
1267
 
1267
 
1268
----------------------- Subfunction 1 - reset ------------------------
1268
----------------------- Subfunction 1 - reset ------------------------
1269
Parameters:
1269
Parameters:
1270
  * eax = 20 - function number
1270
  * eax = 20 - function number
1271
  * ebx = 1 - subfunction number
1271
  * ebx = 1 - subfunction number
1272
 
1272
 
1273
-------------------- Subfunction 2 - output byte ---------------------
1273
-------------------- Subfunction 2 - output byte ---------------------
1274
Parameters:
1274
Parameters:
1275
  * eax = 20 - function number
1275
  * eax = 20 - function number
1276
  * ebx = 2 - subfunction number
1276
  * ebx = 2 - subfunction number
1277
  * cl = byte for output
1277
  * cl = byte for output
1278
Returned value (is the same for both subfunctions):
1278
Returned value (is the same for both subfunctions):
1279
  * eax = 0 - success
1279
  * eax = 0 - success
1280
  * eax = 1 - base port is not defined
1280
  * eax = 1 - base port is not defined
1281
Remarks:
1281
Remarks:
1282
  * Previously the base port must be defined by
1282
  * Previously the base port must be defined by
1283
    subfunction 1 of function 21.
1283
    subfunction 1 of function 21.
1284
 
1284
 
1285
---------------------- Constants for registers: ----------------------
1285
---------------------- Constants for registers: ----------------------
1286
  eax - SF_MIDI (20)
1286
  eax - SF_MIDI (20)
1287
  ebx - SSF_RESET (1), SSF_OUTPUT (2)
1287
  ebx - SSF_RESET (1), SSF_OUTPUT (2)
1288
======================================================================
1288
======================================================================
1289
======== Function 21, subfunction 1 - set MPU MIDI base port. ========
1289
======== Function 21, subfunction 1 - set MPU MIDI base port. ========
1290
======================================================================
1290
======================================================================
1291
Parameters:
1291
Parameters:
1292
  * eax = 21 - function number
1292
  * eax = 21 - function number
1293
  * ebx = 1 - subfunction number
1293
  * ebx = 1 - subfunction number
1294
  * ecx = number of base port
1294
  * ecx = number of base port
1295
Returned value
1295
Returned value
1296
  * eax = 0 - success
1296
  * eax = 0 - success
1297
  * eax = -1 - erratic number of a port
1297
  * eax = -1 - erratic number of a port
1298
Remarks:
1298
Remarks:
1299
  * Number of a port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1299
  * Number of a port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1300
  * The installation of base is necessary for function 20.
1300
  * The installation of base is necessary for function 20.
1301
  * To get base port use subfunction 1 of function 26.
1301
  * To get base port use subfunction 1 of function 26.
1302
 
1302
 
1303
---------------------- Constants for registers: ----------------------
1303
---------------------- Constants for registers: ----------------------
1304
  eax - SF_SYSTEM_SET (21)
1304
  eax - SF_SYSTEM_SET (21)
1305
  ebx - SSF_MPU_MIDI_BASE (1)
1305
  ebx - SSF_MPU_MIDI_BASE (1)
1306
======================================================================
1306
======================================================================
1307
========== Function 21, subfunction 2 - set keyboard layout. =========
1307
========== Function 21, subfunction 2 - set keyboard layout. =========
1308
======================================================================
1308
======================================================================
1309
Keyboard layout is used to convert keyboard scancodes to ASCII-codes,
1309
Keyboard layout is used to convert keyboard scancodes to ASCII-codes,
1310
which will be read by function 2.
1310
which will be read by function 2.
1311
Parameters:
1311
Parameters:
1312
  * eax = 21 - function number
1312
  * eax = 21 - function number
1313
  * ebx = 2 - subfunction number
1313
  * ebx = 2 - subfunction number
1314
  * ecx = which layout to set:
1314
  * ecx = which layout to set:
1315
    * 1 = normal layout
1315
    * 1 = normal layout
1316
    * 2 = layout at pressed Shift
1316
    * 2 = layout at pressed Shift
1317
    * 3 = layout at pressed Alt
1317
    * 3 = layout at pressed Alt
1318
  * edx = pointer to layout - table of length 128 bytes
1318
  * edx = pointer to layout - table of length 128 bytes
1319
Or:
1319
Or:
1320
  * ecx = 9
1320
  * ecx = 9
1321
  * dx = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1321
  * dx = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1322
Returned value:
1322
Returned value:
1323
  * eax = 0 - success
1323
  * eax = 0 - success
1324
  * eax = 1 - incorrect parameter
1324
  * eax = 1 - incorrect parameter
1325
Remarks:
1325
Remarks:
1326
  * If Alt is pressed, the layout with Alt is used;
1326
  * If Alt is pressed, the layout with Alt is used;
1327
    if Alt is not pressed, but Shift is pressed,
1327
    if Alt is not pressed, but Shift is pressed,
1328
    the layout with Shift is used;
1328
    the layout with Shift is used;
1329
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1329
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1330
    layout is used and then from the code is subtracted 0x60;
1330
    layout is used and then from the code is subtracted 0x60;
1331
    if no control key is pressed, the normal layout is used.
1331
    if no control key is pressed, the normal layout is used.
1332
  * To get layout and country identifier use
1332
  * To get layout and country identifier use
1333
    subfunction 2 of function 26.
1333
    subfunction 2 of function 26.
1334
  * Country identifier is global system variable, which is not used
1334
  * Country identifier is global system variable, which is not used
1335
    by the kernel itself; however the application '@taskbar' displays
1335
    by the kernel itself; however the application '@taskbar' displays
1336
    the corresponding icon.
1336
    the corresponding icon.
1337
  * The application @taskbar switches layouts on user request.
1337
  * The application @taskbar switches layouts on user request.
1338
 
1338
 
1339
---------------------- Constants for registers: ----------------------
1339
---------------------- Constants for registers: ----------------------
1340
  eax - SF_SYSTEM_SET (21)
1340
  eax - SF_SYSTEM_SET (21)
1341
  ebx - SSF_KEYBOARD_LAYOUT (2)
1341
  ebx - SSF_KEYBOARD_LAYOUT (2)
1342
======================================================================
1342
======================================================================
1343
========== Function 21, subfunction 5 - set system language. =========
1343
========== Function 21, subfunction 5 - set system language. =========
1344
======================================================================
1344
======================================================================
1345
Parameters:
1345
Parameters:
1346
  * eax = 21 - function number
1346
  * eax = 21 - function number
1347
  * ebx = 5 - subfunction number
1347
  * ebx = 5 - subfunction number
1348
  * ecx = system language (1=eng, 2=fi, 3=ger, 4=rus)
1348
  * ecx = system language (1=eng, 2=fi, 3=ger, 4=rus)
1349
Returned value:
1349
Returned value:
1350
  * eax = 0
1350
  * eax = 0
1351
Remarks:
1351
Remarks:
1352
  * System language is global system variable and is not used
1352
  * System language is global system variable and is not used
1353
    by the kernel itself, however application @taskbar draws the
1353
    by the kernel itself, however application @taskbar draws the
1354
    appropriate icon.
1354
    appropriate icon.
1355
  * Function does not check for correctness, as the kernel does not
1355
  * Function does not check for correctness, as the kernel does not
1356
    use this variable.
1356
    use this variable.
1357
  * To get system language use subfunction 5 of function 26.
1357
  * To get system language use subfunction 5 of function 26.
1358
 
1358
 
1359
---------------------- Constants for registers: ----------------------
1359
---------------------- Constants for registers: ----------------------
1360
  eax - SF_SYSTEM_SET (21)
1360
  eax - SF_SYSTEM_SET (21)
1361
  ebx - SSF_SYS_LANG (5)
1361
  ebx - SSF_SYS_LANG (5)
1362
======================================================================
1362
======================================================================
1363
 Function 21, subfunction 11 - enable/disable low-level access to HD.
1363
 Function 21, subfunction 11 - enable/disable low-level access to HD.
1364
======================================================================
1364
======================================================================
1365
Parameters:
1365
Parameters:
1366
  * eax = 21 - function number
1366
  * eax = 21 - function number
1367
  * ebx = 11 - subfunction number
1367
  * ebx = 11 - subfunction number
1368
  * ecx = 0/1 - disable/enable
1368
  * ecx = 0/1 - disable/enable
1369
Returned value:
1369
Returned value:
1370
  * eax = 0
1370
  * eax = 0
1371
Remarks:
1371
Remarks:
1372
  * Is used in LBA-read (subfunction 8 of function 58).
1372
  * Is used in LBA-read (subfunction 8 of function 58).
1373
  * The current implementation uses only low bit of ecx.
1373
  * The current implementation uses only low bit of ecx.
1374
  * To get current status use subfunction 11 of function 26.
1374
  * To get current status use subfunction 11 of function 26.
1375
 
1375
 
1376
---------------------- Constants for registers: ----------------------
1376
---------------------- Constants for registers: ----------------------
1377
  eax - SF_SYSTEM_SET (21)
1377
  eax - SF_SYSTEM_SET (21)
1378
  ebx - SSF_ACCESS_HD_LBA (11)
1378
  ebx - SSF_ACCESS_HD_LBA (11)
1379
======================================================================
1379
======================================================================
1380
 Function 21, subfunction 12 - enable/disable low-level access to PCI.
1380
 Function 21, subfunction 12 - enable/disable low-level access to PCI.
1381
======================================================================
1381
======================================================================
1382
Parameters:
1382
Parameters:
1383
  * eax = 21 - function number
1383
  * eax = 21 - function number
1384
  * ebx = 12 - subfunction number
1384
  * ebx = 12 - subfunction number
1385
  * ecx = 0/1 - disable/enable
1385
  * ecx = 0/1 - disable/enable
1386
Returned value:
1386
Returned value:
1387
  * eax = 0
1387
  * eax = 0
1388
Remarks:
1388
Remarks:
1389
  * Is used in operations with PCI bus (function 62).
1389
  * Is used in operations with PCI bus (function 62).
1390
  * The current implementation uses only low bit of ecx.
1390
  * The current implementation uses only low bit of ecx.
1391
  * To get current status use subfunction 12 of function 26.
1391
  * To get current status use subfunction 12 of function 26.
1392
 
1392
 
1393
---------------------- Constants for registers: ----------------------
1393
---------------------- Constants for registers: ----------------------
1394
  eax - SF_SYSTEM_SET (21)
1394
  eax - SF_SYSTEM_SET (21)
1395
  ebx - SSF_ACCESS_PCI (12)
1395
  ebx - SSF_ACCESS_PCI (12)
1396
======================================================================
1396
======================================================================
1397
================= Function 22 - set system date/time. ================
1397
================= Function 22 - set system date/time. ================
1398
======================================================================
1398
======================================================================
1399
Parameters:
1399
Parameters:
1400
  * eax = 22 - function number
1400
  * eax = 22 - function number
1401
  * ebx = 0 - set time
1401
  * ebx = 0 - set time
1402
    * ecx = 0x00SSMMHH - time in the binary-decimal code (BCD):
1402
    * ecx = 0x00SSMMHH - time in the binary-decimal code (BCD):
1403
    * HH=hour 00..23
1403
    * HH=hour 00..23
1404
    * MM=minute 00..59
1404
    * MM=minute 00..59
1405
    * SS=second 00..59
1405
    * SS=second 00..59
1406
  * ebx = 1 - set date
1406
  * ebx = 1 - set date
1407
    * ecx = 0x00DDMMYY - date in the binary-decimal code (BCD):
1407
    * ecx = 0x00DDMMYY - date in the binary-decimal code (BCD):
1408
    * DD=day 01..31
1408
    * DD=day 01..31
1409
    * MM=month 01..12
1409
    * MM=month 01..12
1410
    * YY=year 00..99
1410
    * YY=year 00..99
1411
  * ebx = 2 - set day of week
1411
  * ebx = 2 - set day of week
1412
    * ecx = 1 for Sunday, ..., 7 for Saturday
1412
    * ecx = 1 for Sunday, ..., 7 for Saturday
1413
  * ebx = 3 - set alarm clock
1413
  * ebx = 3 - set alarm clock
1414
    * ecx = 0x00SSMMHH
1414
    * ecx = 0x00SSMMHH
1415
Returned value:
1415
Returned value:
1416
  * eax = 0 - success
1416
  * eax = 0 - success
1417
  * eax = 1 - incorrect parameter
1417
  * eax = 1 - incorrect parameter
1418
  * eax = 2 - CMOS-battery was unloaded
1418
  * eax = 2 - CMOS-battery was unloaded
1419
Remarks:
1419
Remarks:
1420
  * Value of installation of day of week seems to be doubtful,
1420
  * Value of installation of day of week seems to be doubtful,
1421
    as it a little where is used
1421
    as it a little where is used
1422
    (day of week can be calculated by date).
1422
    (day of week can be calculated by date).
1423
  * Alarm clock can be set on operation in the given time every day.
1423
  * Alarm clock can be set on operation in the given time every day.
1424
    But there is no existing system function to disable it.
1424
    But there is no existing system function to disable it.
1425
  * Operation of alarm clock consists in generation IRQ8.
1425
  * Operation of alarm clock consists in generation IRQ8.
1426
  * Generally CMOS supports for alarm clock set of value 0xFF
1426
  * Generally CMOS supports for alarm clock set of value 0xFF
1427
    as one of parameters and it means that the appropriate parameter
1427
    as one of parameters and it means that the appropriate parameter
1428
    is ignored. But current implementation does not allow this
1428
    is ignored. But current implementation does not allow this
1429
    (will return 1).
1429
    (will return 1).
1430
  * Alarm clock is a global system resource; the set of
1430
  * Alarm clock is a global system resource; the set of
1431
    an alarm clock cancels automatically the previous set.
1431
    an alarm clock cancels automatically the previous set.
1432
    However, at moment no program uses it.
1432
    However, at moment no program uses it.
1433
 
1433
 
1434
---------------------- Constants for registers: ----------------------
1434
---------------------- Constants for registers: ----------------------
1435
  eax - SF_SET_TIME_DATE (22)
1435
  eax - SF_SET_TIME_DATE (22)
1436
======================================================================
1436
======================================================================
1437
============= Function 23 - wait for event with timeout. =============
1437
============= Function 23 - wait for event with timeout. =============
1438
======================================================================
1438
======================================================================
1439
If the message queue is empty, waits for new message in the queue,
1439
If the message queue is empty, waits for new message in the queue,
1440
but no more than given time. Then reads out a message from the queue.
1440
but no more than given time. Then reads out a message from the queue.
1441
 
1441
 
1442
Parameters:
1442
Parameters:
1443
  * eax = 23 - function number
1443
  * eax = 23 - function number
1444
  * ebx = timeout (in 1/100 of second)
1444
  * ebx = timeout (in 1/100 of second)
1445
Returned value:
1445
Returned value:
1446
  * eax = 0 - the message queue is empty
1446
  * eax = 0 - the message queue is empty
1447
  * otherwise eax = event (see the list of events)
1447
  * otherwise eax = event (see the list of events)
1448
Remarks:
1448
Remarks:
1449
  * Only those events are taken into account, which enter into
1449
  * Only those events are taken into account, which enter into
1450
    the mask set by function 40. By default it is
1450
    the mask set by function 40. By default it is
1451
    redraw, key and button events.
1451
    redraw, key and button events.
1452
  * To check for presence of a message in the queue use function 11.
1452
  * To check for presence of a message in the queue use function 11.
1453
    To wait without timeout use function 10.
1453
    To wait without timeout use function 10.
1454
  * Transmission ebx=0 results in immediate returning eax=0.
1454
  * Transmission ebx=0 results in immediate returning eax=0.
1455
  * Current implementation returns immediately with eax=0,
1455
  * Current implementation returns immediately with eax=0,
1456
    if the addition of ebx with the current value of time counter
1456
    if the addition of ebx with the current value of time counter
1457
    makes 32-bit overflow.
1457
    makes 32-bit overflow.
1458
 
1458
 
1459
---------------------- Constants for registers: ----------------------
1459
---------------------- Constants for registers: ----------------------
1460
  eax - SF_WAIT_EVENT_TIMEOUT (23)
1460
  eax - SF_WAIT_EVENT_TIMEOUT (23)
1461
======================================================================
1461
======================================================================
1462
======= Function 24, subfunction 4 - eject tray of disk drive. =======
1462
======= Function 24, subfunction 4 - eject tray of disk drive. =======
1463
======================================================================
1463
======================================================================
1464
Parameters:
1464
Parameters:
1465
  * eax = 24 - function number
1465
  * eax = 24 - function number
1466
  * ebx = 4 - subfunction number
1466
  * ebx = 4 - subfunction number
1467
  * ecx = position of CD/DVD-drive
1467
  * ecx = position of CD/DVD-drive
1468
    from 0=Primary Master to 3=Secondary Slave for first IDE contr.
1468
    from 0=Primary Master to 3=Secondary Slave for first IDE contr.
1469
    from 4=Primary Master to 7=Secondary Slave for second IDE contr.
1469
    from 4=Primary Master to 7=Secondary Slave for second IDE contr.
1470
    from 8=Primary Master to 11=Secondary Slave for third IDE contr.
1470
    from 8=Primary Master to 11=Secondary Slave for third IDE contr.
1471
Returned value:
1471
Returned value:
1472
  * function does not return value
1472
  * function does not return value
1473
Remarks:
1473
Remarks:
1474
  * The function is supported only for ATAPI devices (CD and DVD).
1474
  * The function is supported only for ATAPI devices (CD and DVD).
1475
  * When the tray is being ejected,
1475
  * When the tray is being ejected,
1476
    manual control of tray is unlocked.
1476
    manual control of tray is unlocked.
1477
  * When the tray is being ejected, the code clears the cache for
1477
  * When the tray is being ejected, the code clears the cache for
1478
    corresponding device.
1478
    corresponding device.
1479
  * An example of usage of the function is the application CD_tray.
1479
  * An example of usage of the function is the application CD_tray.
1480
 
1480
 
1481
---------------------- Constants for registers: ----------------------
1481
---------------------- Constants for registers: ----------------------
1482
  eax - SF_CD (24)
1482
  eax - SF_CD (24)
1483
  ebx - SSF_EJECT_TRAY (4), SSF_INSERT_TRAY (5)
1483
  ebx - SSF_EJECT_TRAY (4), SSF_INSERT_TRAY (5)
1484
======================================================================
1484
======================================================================
1485
======== Function 24, subfunction 5 - load tray of disk drive. =======
1485
======== Function 24, subfunction 5 - load tray of disk drive. =======
1486
======================================================================
1486
======================================================================
1487
Parameters:
1487
Parameters:
1488
  * eax = 24 - function number
1488
  * eax = 24 - function number
1489
  * ebx = 5 - subfunction number
1489
  * ebx = 5 - subfunction number
1490
  * ecx = position of CD/DVD-drive
1490
  * ecx = position of CD/DVD-drive
1491
    from 0=Primary Master to 3=Secondary Slave for first IDE contr.
1491
    from 0=Primary Master to 3=Secondary Slave for first IDE contr.
1492
    from 4=Primary Master to 7=Secondary Slave for second IDE contr.
1492
    from 4=Primary Master to 7=Secondary Slave for second IDE contr.
1493
    from 8=Primary Master to 11=Secondary Slave for third IDE contr.
1493
    from 8=Primary Master to 11=Secondary Slave for third IDE contr.
1494
Returned value:
1494
Returned value:
1495
  * function does not return value
1495
  * function does not return value
1496
Remarks:
1496
Remarks:
1497
  * The function is supported only for ATAPI devices (CD and DVD).
1497
  * The function is supported only for ATAPI devices (CD and DVD).
1498
  * An example of usage of the function is the application CD_tray.
1498
  * An example of usage of the function is the application CD_tray.
1499
 
1499
 
1500
---------------------- Constants for registers: ----------------------
1500
---------------------- Constants for registers: ----------------------
1501
  eax - SF_CD (24)
1501
  eax - SF_CD (24)
1502
  ebx - SSF_EJECT_TRAY (4), SSF_INSERT_TRAY (5)
1502
  ebx - SSF_EJECT_TRAY (4), SSF_INSERT_TRAY (5)
1503
======================================================================
1503
======================================================================
1504
======= Function 25 - put image area on the background layer. ========
1504
======= Function 25 - put image area on the background layer. ========
1505
======================================================================
1505
======================================================================
1506
Paramters:
1506
Paramters:
1507
  * eax = 25 - function number
1507
  * eax = 25 - function number
1508
  * ebx = pointer to the previously allocated memory area,
1508
  * ebx = pointer to the previously allocated memory area,
1509
        where placed the source images in a format BBGGRRTTBBGGRRTT...
1509
        where placed the source images in a format BBGGRRTTBBGGRRTT...
1510
  * ecx = [size on axis x]*65536 + [size on axis y]
1510
  * ecx = [size on axis x]*65536 + [size on axis y]
1511
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1511
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1512
Returned value:
1512
Returned value:
1513
  * function does not return value
1513
  * function does not return value
1514
Remarks:
1514
Remarks:
1515
  * Coordinates of the image are coordinates of the upper left corner
1515
  * Coordinates of the image are coordinates of the upper left corner
1516
    of the image relative to the screen.
1516
    of the image relative to the screen.
1517
  * Size of the image in bytes is 4*xsize*ysize
1517
  * Size of the image in bytes is 4*xsize*ysize
1518
  * TT - byte pointer of transparency, at current version:
1518
  * TT - byte pointer of transparency, at current version:
1519
         1 to FF - opaque, 0 - transparent.
1519
         1 to FF - opaque, 0 - transparent.
1520
  * The function places the image directly to LFB. It is not for
1520
  * The function places the image directly to LFB. It is not for
1521
    background image f.15. Options f.15 to f.25 does not make sense.
1521
    background image f.15. Options f.15 to f.25 does not make sense.
1522
 
1522
 
1523
---------------------- Constants for registers: ----------------------
1523
---------------------- Constants for registers: ----------------------
1524
  eax - SF_SCREEN_PUT_IMAGE (25)
1524
  eax - SF_SCREEN_PUT_IMAGE (25)
1525
======================================================================
1525
======================================================================
1526
======== Function 26, subfunction 1 - get MPU MIDI base port. ========
1526
======== Function 26, subfunction 1 - get MPU MIDI base port. ========
1527
======================================================================
1527
======================================================================
1528
Parameters:
1528
Parameters:
1529
  * eax = 26 - function number
1529
  * eax = 26 - function number
1530
  * ebx = 1 - subfunction number
1530
  * ebx = 1 - subfunction number
1531
Returned value:
1531
Returned value:
1532
  * eax = port number
1532
  * eax = port number
1533
Parameters:
1533
Parameters:
1534
  * To set base port use subfunction 1 of function 21.
1534
  * To set base port use subfunction 1 of function 21.
1535
 
1535
 
1536
---------------------- Constants for registers: ----------------------
1536
---------------------- Constants for registers: ----------------------
1537
  eax - SF_SYSTEM_GET (26)
1537
  eax - SF_SYSTEM_GET (26)
1538
  ebx - SSF_MPU_MIDI_BASE (1)
1538
  ebx - SSF_MPU_MIDI_BASE (1)
1539
======================================================================
1539
======================================================================
1540
========== Function 26, subfunction 2 - get keyboard layout. =========
1540
========== Function 26, subfunction 2 - get keyboard layout. =========
1541
======================================================================
1541
======================================================================
1542
The keyboard layout is used to convert keyboard scancodes to
1542
The keyboard layout is used to convert keyboard scancodes to
1543
ASCII-codes for function 2.
1543
ASCII-codes for function 2.
1544
Parameters:
1544
Parameters:
1545
  * eax = 26 - function number
1545
  * eax = 26 - function number
1546
  * ebx = 2 - subfunction number
1546
  * ebx = 2 - subfunction number
1547
  * ecx = what layout to get:
1547
  * ecx = what layout to get:
1548
    * 1 = normal layout
1548
    * 1 = normal layout
1549
    * 2 = layout with pressed Shift
1549
    * 2 = layout with pressed Shift
1550
    * 3 = layout with pressed Alt
1550
    * 3 = layout with pressed Alt
1551
  * edx = pointer to the 128-bytes buffer, where the layout will be
1551
  * edx = pointer to the 128-bytes buffer, where the layout will be
1552
    copied
1552
    copied
1553
Returned value:
1553
Returned value:
1554
  * function does not return value
1554
  * function does not return value
1555
Or:
1555
Or:
1556
  * eax = 26 - function number
1556
  * eax = 26 - function number
1557
  * ebx = 2 - subfunction number
1557
  * ebx = 2 - subfunction number
1558
  * ecx = 9
1558
  * ecx = 9
1559
Returned value:
1559
Returned value:
1560
  * eax = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1560
  * eax = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1561
Remarks:
1561
Remarks:
1562
  * If Alt is pressed, the layout with Alt is used;
1562
  * If Alt is pressed, the layout with Alt is used;
1563
    if Alt is not pressed, but Shift is pressed,
1563
    if Alt is not pressed, but Shift is pressed,
1564
    the layout with Shift is used;
1564
    the layout with Shift is used;
1565
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1565
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1566
    layout is used and then from the code is subtracted 0x60;
1566
    layout is used and then from the code is subtracted 0x60;
1567
    if no control key is pressed, the normal layout is used.
1567
    if no control key is pressed, the normal layout is used.
1568
  * To set layout and country identifier use
1568
  * To set layout and country identifier use
1569
    subfunction 2 of function 21.
1569
    subfunction 2 of function 21.
1570
  * Country identifier is global system variable, which is not used
1570
  * Country identifier is global system variable, which is not used
1571
    by the kernel itself; however the application '@taskbar' displays
1571
    by the kernel itself; however the application '@taskbar' displays
1572
    the corresponding icon (using this function).
1572
    the corresponding icon (using this function).
1573
  * The application @taskbar switches layouts on user request.
1573
  * The application @taskbar switches layouts on user request.
1574
 
1574
 
1575
---------------------- Constants for registers: ----------------------
1575
---------------------- Constants for registers: ----------------------
1576
  eax - SF_SYSTEM_GET (26)
1576
  eax - SF_SYSTEM_GET (26)
1577
  ebx - SSF_KEYBOARD_LAYOUT (2)
1577
  ebx - SSF_KEYBOARD_LAYOUT (2)
1578
======================================================================
1578
======================================================================
1579
========== Function 26, subfunction 5 - get system language. =========
1579
========== Function 26, subfunction 5 - get system language. =========
1580
======================================================================
1580
======================================================================
1581
Parameters:
1581
Parameters:
1582
  * eax = 26 - function number
1582
  * eax = 26 - function number
1583
  * ebx = 5 - subfunction number
1583
  * ebx = 5 - subfunction number
1584
Returned value:
1584
Returned value:
1585
  * eax = system language (1=eng, 2=fi, 3=ger, 4=rus)
1585
  * eax = system language (1=eng, 2=fi, 3=ger, 4=rus)
1586
Remarks:
1586
Remarks:
1587
  * System language is global system variable and is not used
1587
  * System language is global system variable and is not used
1588
    by the kernel itself, however application @taskbar draws the
1588
    by the kernel itself, however application @taskbar draws the
1589
    appropriate icon (using this function).
1589
    appropriate icon (using this function).
1590
  * To set system language use subfunction 5 of function 21.
1590
  * To set system language use subfunction 5 of function 21.
1591
 
1591
 
1592
---------------------- Constants for registers: ----------------------
1592
---------------------- Constants for registers: ----------------------
1593
  eax - SF_SYSTEM_GET (26)
1593
  eax - SF_SYSTEM_GET (26)
1594
  ebx - SSF_SYS_LANG (5)
1594
  ebx - SSF_SYS_LANG (5)
1595
======================================================================
1595
======================================================================
1596
=== Function 26, subfunction 9 - get the value of the time counter. ==
1596
=== Function 26, subfunction 9 - get the value of the time counter. ==
1597
======================================================================
1597
======================================================================
1598
Parameters:
1598
Parameters:
1599
  * eax = 26 - function number
1599
  * eax = 26 - function number
1600
  * ebx = 9 - subfunction number
1600
  * ebx = 9 - subfunction number
1601
Returned value:
1601
Returned value:
1602
  * eax = number of 1/100s of second, past from the system boot time
1602
  * eax = number of 1/100s of second, past from the system boot time
1603
Remarks:
1603
Remarks:
1604
  * Counter takes modulo 2^32, that correspond to a little more
1604
  * Counter takes modulo 2^32, that correspond to a little more
1605
    than 497 days.
1605
    than 497 days.
1606
  * To get system time use function 3.
1606
  * To get system time use function 3.
1607
 
1607
 
1608
---------------------- Constants for registers: ----------------------
1608
---------------------- Constants for registers: ----------------------
1609
  eax - SF_SYSTEM_GET (26)
1609
  eax - SF_SYSTEM_GET (26)
1610
  ebx - SSF_TIME_COUNT (9)
1610
  ebx - SSF_TIME_COUNT (9)
1611
======================================================================
1611
======================================================================
1612
===================== Function 26, subfunction 10 ====================
1612
===================== Function 26, subfunction 10 ====================
1613
========== Get the value of the high precision time counter. =========
1613
========== Get the value of the high precision time counter. =========
1614
======================================================================
1614
======================================================================
1615
Parameters:
1615
Parameters:
1616
  * eax = 26 - function number
1616
  * eax = 26 - function number
1617
  * ebx = 10 - subfunction number
1617
  * ebx = 10 - subfunction number
1618
Returned value:
1618
Returned value:
1619
  * eax = number of nanoseconds since system boot time (lower DWORD)
1619
  * eax = number of nanoseconds since system boot time (lower DWORD)
1620
  * edx = number of nanoseconds since system boot time (high DWORD)
1620
  * edx = number of nanoseconds since system boot time (high DWORD)
1621
Remarks:
1621
Remarks:
1622
  * The counter is based on HPET, if HPET is not available, resolution
1622
  * The counter is based on HPET, if HPET is not available, resolution
1623
    will be reduced to 10 000 000 nanoseconds.
1623
    will be reduced to 10 000 000 nanoseconds.
1624
 
1624
 
1625
---------------------- Constants for registers: ----------------------
1625
---------------------- Constants for registers: ----------------------
1626
  eax - SF_SYSTEM_GET (26)
1626
  eax - SF_SYSTEM_GET (26)
1627
  ebx - SSF_TIME_COUNT_PRO (10)
1627
  ebx - SSF_TIME_COUNT_PRO (10)
1628
======================================================================
1628
======================================================================
1629
===================== Function 26, subfunction 11 ====================
1629
===================== Function 26, subfunction 11 ====================
1630
========== Find out whether low-level HD access is enabled. ==========
1630
========== Find out whether low-level HD access is enabled. ==========
1631
======================================================================
1631
======================================================================
1632
Parameters:
1632
Parameters:
1633
  * eax = 26 - function number
1633
  * eax = 26 - function number
1634
  * ebx = 11 - subfunction number
1634
  * ebx = 11 - subfunction number
1635
Returned value:
1635
Returned value:
1636
  * eax = 0/1 - disabled/enabled
1636
  * eax = 0/1 - disabled/enabled
1637
Remarks:
1637
Remarks:
1638
  * Is used in LBA read (subfunction 8 of function 58).
1638
  * Is used in LBA read (subfunction 8 of function 58).
1639
  * To set current state use subfunction 11 of function 21.
1639
  * To set current state use subfunction 11 of function 21.
1640
 
1640
 
1641
---------------------- Constants for registers: ----------------------
1641
---------------------- Constants for registers: ----------------------
1642
  eax - SF_SYSTEM_GET (26)
1642
  eax - SF_SYSTEM_GET (26)
1643
  ebx - SSF_ACCESS_HD_LBA (11)
1643
  ebx - SSF_ACCESS_HD_LBA (11)
1644
======================================================================
1644
======================================================================
1645
===================== Function 26, subfunction 12 ====================
1645
===================== Function 26, subfunction 12 ====================
1646
========== Find out whether low-level PCI access is enabled. =========
1646
========== Find out whether low-level PCI access is enabled. =========
1647
======================================================================
1647
======================================================================
1648
Parameters:
1648
Parameters:
1649
  * eax = 26 - function number
1649
  * eax = 26 - function number
1650
  * ebx = 12 - subfunction number
1650
  * ebx = 12 - subfunction number
1651
Returned value:
1651
Returned value:
1652
  * eax = 0/1 - disabled/enabled
1652
  * eax = 0/1 - disabled/enabled
1653
Remarks:
1653
Remarks:
1654
  * Is used by operations with PCI bus (function 62).
1654
  * Is used by operations with PCI bus (function 62).
1655
  * The current implementation uses only low bit of ecx.
1655
  * The current implementation uses only low bit of ecx.
1656
  * To set the current state use subfunction 12 of function 21.
1656
  * To set the current state use subfunction 12 of function 21.
1657
 
1657
 
1658
---------------------- Constants for registers: ----------------------
1658
---------------------- Constants for registers: ----------------------
1659
  eax - SF_SYSTEM_GET (26)
1659
  eax - SF_SYSTEM_GET (26)
1660
  ebx - SSF_ACCESS_PCI (12)
1660
  ebx - SSF_ACCESS_PCI (12)
1661
======================================================================
1661
======================================================================
1662
=================== Function 29 - get system date. ===================
1662
=================== Function 29 - get system date. ===================
1663
======================================================================
1663
======================================================================
1664
Parameters:
1664
Parameters:
1665
  * eax = 29 - function number
1665
  * eax = 29 - function number
1666
Returned value:
1666
Returned value:
1667
  * eax = 0x00DDMMYY, where
1667
  * eax = 0x00DDMMYY, where
1668
    (binary-decimal coding, BCD, is used)
1668
    (binary-decimal coding, BCD, is used)
1669
  * YY = two low digits of year (00..99)
1669
  * YY = two low digits of year (00..99)
1670
  * MM = month (01..12)
1670
  * MM = month (01..12)
1671
  * DD = day (01..31)
1671
  * DD = day (01..31)
1672
Remarks:
1672
Remarks:
1673
  * To set system date use function 22.
1673
  * To set system date use function 22.
1674
 
1674
 
1675
---------------------- Constants for registers: ----------------------
1675
---------------------- Constants for registers: ----------------------
1676
  eax - SF_GET_SYS_DATE (29)
1676
  eax - SF_GET_SYS_DATE (29)
1677
======================================================================
1677
======================================================================
1678
============= Function 30 - work with the current folder. ============
1678
============= Function 30 - work with the current folder. ============
1679
======================================================================
1679
======================================================================
1680
--------- Subfunction 1 - set current folder for the thread. ---------
1680
--------- Subfunction 1 - set current folder for the thread. ---------
1681
Parameters:
1681
Parameters:
1682
  * eax = 30 - function number
1682
  * eax = 30 - function number
1683
  * ebx = 1 - subfunction number
1683
  * ebx = 1 - subfunction number
1684
  * ecx = pointer to string with the path to new current folder,
1684
  * ecx = pointer to string with the path to new current folder,
1685
    rules of path forming can be found in function 70 description.
1685
    rules of path forming can be found in function 70 description.
1686
Returned value:
1686
Returned value:
1687
  * function does not return value
1687
  * function does not return value
1688
----------------------------------------------------------------------
1688
----------------------------------------------------------------------
1689
--------- Subfunction 2 - get current folder for the thread. ---------
1689
--------- Subfunction 2 - get current folder for the thread. ---------
1690
Parameters:
1690
Parameters:
1691
  * eax = 30 - function number
1691
  * eax = 30 - function number
1692
  * ebx = 2 - subfunction number
1692
  * ebx = 2 - subfunction number
1693
  * ecx = pointer to buffer
1693
  * ecx = pointer to buffer
1694
  * edx = size of buffer
1694
  * edx = size of buffer
1695
Returned value:
1695
Returned value:
1696
  * eax = size of the string (including terminating 0)
1696
  * eax = size of the string (including terminating 0)
1697
Remarks:
1697
Remarks:
1698
  * If the buffer is too small to hold all path, only part of the string
1698
  * If the buffer is too small to hold all path, only part of the string
1699
    will be copied and terminated with 0.
1699
    will be copied and terminated with 0.
1700
  * By default, current folder for the thread is "/rd/1".
1700
  * By default, current folder for the thread is "/rd/1".
1701
  * At process/thread creation the current folder will be inherited
1701
  * At process/thread creation the current folder will be inherited
1702
    from the parent.
1702
    from the parent.
1703
----------------------------------------------------------------------
1703
----------------------------------------------------------------------
1704
--- Subfunction 3 - install the add.system directory for the kernel --
1704
--- Subfunction 3 - install the add.system directory for the kernel --
1705
Parameters:
1705
Parameters:
1706
  * eax = 30 - function number
1706
  * eax = 30 - function number
1707
  * ebx = 3 - subfunction number
1707
  * ebx = 3 - subfunction number
1708
  * ecx = pointer to a block of data:
1708
  * ecx = pointer to a block of data:
1709
key     rb  64
1709
key     rb  64
1710
path    rb  64
1710
path    rb  64
1711
    Example:
1711
    Example:
1712
align 64
1712
align 64
1713
key     db  'kolibrios',0   ; key must be in lower case
1713
key     db  'kolibrios',0   ; key must be in lower case
1714
align 64
1714
align 64
1715
path    db  'HD0/1',0
1715
path    db  'HD0/1',0
1716
 
1716
 
1717
Returned value:
1717
Returned value:
1718
  * function does not return value
1718
  * function does not return value
1719
Remarks:
1719
Remarks:
1720
  * The function can be called only 1 time for 1 session of the OS.
1720
  * The function can be called only 1 time for 1 session of the OS.
1721
  * On input the symbolic key is not changing by encoding.
1721
  * On input the symbolic key is not changing by encoding.
1722
----------------------------------------------------------------------
1722
----------------------------------------------------------------------
1723
---- Subfunction 4 - set current folder, specifying the encoding. ----
1723
---- Subfunction 4 - set current folder, specifying the encoding. ----
1724
Parameters:
1724
Parameters:
1725
  * eax = 30 - function number
1725
  * eax = 30 - function number
1726
  * ebx = 4 - subfunction number
1726
  * ebx = 4 - subfunction number
1727
  * ecx = pointer to string with the path to new current folder
1727
  * ecx = pointer to string with the path to new current folder
1728
  * edx = string encoding, details can be found in function 80 description.
1728
  * edx = string encoding, details can be found in function 80 description.
1729
Returned value:
1729
Returned value:
1730
  * function does not return value
1730
  * function does not return value
1731
----------------------------------------------------------------------
1731
----------------------------------------------------------------------
1732
---- Subfunction 5 - get current folder, specifying the encoding. ----
1732
---- Subfunction 5 - get current folder, specifying the encoding. ----
1733
Parameters:
1733
Parameters:
1734
  * eax = 30 - function number
1734
  * eax = 30 - function number
1735
  * ebx = 5 - subfunction number
1735
  * ebx = 5 - subfunction number
1736
  * ecx = pointer to buffer
1736
  * ecx = pointer to buffer
1737
  * edx = size of buffer
1737
  * edx = size of buffer
1738
  * esi = string encoding
1738
  * esi = string encoding
1739
Returned value:
1739
Returned value:
1740
  * eax = size of the string in bytes (including terminating 0)
1740
  * eax = size of the string in bytes (including terminating 0)
1741
Remarks:
1741
Remarks:
1742
  * If the buffer is too small to hold all path, only part of the string
1742
  * If the buffer is too small to hold all path, only part of the string
1743
    will be copied and terminated with 0.
1743
    will be copied and terminated with 0.
1744
  * By default, current folder for the thread is "/rd/1".
1744
  * By default, current folder for the thread is "/rd/1".
1745
  * At process/thread creation the current folder will be inherited
1745
  * At process/thread creation the current folder will be inherited
1746
    from the parent.
1746
    from the parent.
1747
 
1747
 
1748
---------------------- Constants for registers: ----------------------
1748
---------------------- Constants for registers: ----------------------
1749
  eax - SF_CURRENT_FOLDER (30)
1749
  eax - SF_CURRENT_FOLDER (30)
1750
  ebx - SSF_SET_CF (1), SSF_GET_CF (2), SSF_ADD_SYS_FOLDER (3)
1750
  ebx - SSF_SET_CF (1), SSF_GET_CF (2), SSF_ADD_SYS_FOLDER (3)
1751
======================================================================
1751
======================================================================
1752
========= Function 34 - who owner the pixel on the screen. ===========
1752
========= Function 34 - who owner the pixel on the screen. ===========
1753
======================================================================
1753
======================================================================
1754
Parameters:
1754
Parameters:
1755
  * eax = 34 - function number
1755
  * eax = 34 - function number
1756
  * ebx = x-coordinate (relative to the display)
1756
  * ebx = x-coordinate (relative to the display)
1757
  * ecx = y-coordinate (relative to the display)
1757
  * ecx = y-coordinate (relative to the display)
1758
 
1758
 
1759
Returned value:
1759
Returned value:
1760
  * eax = 0x000000XX - owner of pixel the slot window N
1760
  * eax = 0x000000XX - owner of pixel the slot window N
1761
    If incorrect values ebx and ecx then function returns 0
1761
    If incorrect values ebx and ecx then function returns 0
1762
  * The function takes the value from the area [_WinMapAddress]
1762
  * The function takes the value from the area [_WinMapAddress]
1763
 
1763
 
1764
---------------------- Constants for registers: ----------------------
1764
---------------------- Constants for registers: ----------------------
1765
  eax - SF_GET_PIXEL_OWNER (34)
1765
  eax - SF_GET_PIXEL_OWNER (34)
1766
======================================================================
1766
======================================================================
1767
======= Function 35 - read the color of a pixel on the screen. =======
1767
======= Function 35 - read the color of a pixel on the screen. =======
1768
======================================================================
1768
======================================================================
1769
Parameters:
1769
Parameters:
1770
  * eax = 35
1770
  * eax = 35
1771
  * ebx = y*xsize+x, where
1771
  * ebx = y*xsize+x, where
1772
  * (x,y) = coordinates of a pixel (beginning from 0)
1772
  * (x,y) = coordinates of a pixel (beginning from 0)
1773
  * xsize = horizontal screen size
1773
  * xsize = horizontal screen size
1774
Returned value:
1774
Returned value:
1775
  * eax = color 0x00RRGGBB
1775
  * eax = color 0x00RRGGBB
1776
Remarks:
1776
Remarks:
1777
  * To get screen sizes use function 14. Pay attention,
1777
  * To get screen sizes use function 14. Pay attention,
1778
    that it subtracts 1 from both sizes.
1778
    that it subtracts 1 from both sizes.
1779
  * There is also direct access (without any system calls)
1779
  * There is also direct access (without any system calls)
1780
    to videomemory through the selector gs. To get parameters of
1780
    to videomemory through the selector gs. To get parameters of
1781
    the current videomode, use function 61.
1781
    the current videomode, use function 61.
1782
 
1782
 
1783
---------------------- Constants for registers: ----------------------
1783
---------------------- Constants for registers: ----------------------
1784
  eax - SF_GET_PIXEL (35)
1784
  eax - SF_GET_PIXEL (35)
1785
======================================================================
1785
======================================================================
1786
=================== Function 36 - read screen area. ==================
1786
=================== Function 36 - read screen area. ==================
1787
======================================================================
1787
======================================================================
1788
Paramters:
1788
Paramters:
1789
  * eax = 36 - function number
1789
  * eax = 36 - function number
1790
  * ebx = pointer to the previously allocated memory area,
1790
  * ebx = pointer to the previously allocated memory area,
1791
        where will be placed the image in the format BBGGRRBBGGRR...
1791
        where will be placed the image in the format BBGGRRBBGGRR...
1792
  * ecx = [size on axis x]*65536 + [size on axis y]
1792
  * ecx = [size on axis x]*65536 + [size on axis y]
1793
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1793
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
1794
Returned value:
1794
Returned value:
1795
  * function does not return value
1795
  * function does not return value
1796
Remarks:
1796
Remarks:
1797
  * Coordinates of the image are coordinates of the upper left corner
1797
  * Coordinates of the image are coordinates of the upper left corner
1798
    of the image relative to the screen.
1798
    of the image relative to the screen.
1799
  * Size of the image in bytes is 3*xsize*ysize.
1799
  * Size of the image in bytes is 3*xsize*ysize.
1800
 
1800
 
1801
---------------------- Constants for registers: ----------------------
1801
---------------------- Constants for registers: ----------------------
1802
  eax - SF_GET_IMAGE (36)
1802
  eax - SF_GET_IMAGE (36)
1803
======================================================================
1803
======================================================================
1804
=================== Function 37 - work with mouse. ===================
1804
=================== Function 37 - work with mouse. ===================
1805
======================================================================
1805
======================================================================
1806
 
1806
 
1807
---------- Subfunction 0 - screen coordinates of the mouse -----------
1807
---------- Subfunction 0 - screen coordinates of the mouse -----------
1808
Parameters:
1808
Parameters:
1809
  * eax = 37 - function number
1809
  * eax = 37 - function number
1810
  * ebx = 0 - subfunction number
1810
  * ebx = 0 - subfunction number
1811
Returned value:
1811
Returned value:
1812
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1812
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1813
    (beginning from 0)
1813
    (beginning from 0)
1814
 
1814
 
1815
-- Subfunction 1 - coordinates of the mouse relative to the window ---
1815
-- Subfunction 1 - coordinates of the mouse relative to the window ---
1816
Parameters:
1816
Parameters:
1817
  * eax = 37 - function number
1817
  * eax = 37 - function number
1818
  * ebx = 1 - subfunction number
1818
  * ebx = 1 - subfunction number
1819
Returned value:
1819
Returned value:
1820
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1820
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1821
    relative to the application window (beginning from 0)
1821
    relative to the application window (beginning from 0)
1822
Remarks:
1822
Remarks:
1823
  * The value is calculated by formula (x-xwnd)*65536 + (y-ywnd).
1823
  * The value is calculated by formula (x-xwnd)*65536 + (y-ywnd).
1824
    If y>=ywnd, the low word is non-negative and contains
1824
    If y>=ywnd, the low word is non-negative and contains
1825
    relative y-coordinate, and the high word - relative x-coordinate
1825
    relative y-coordinate, and the high word - relative x-coordinate
1826
    (with correct sign). Otherwise the low word is negative and still
1826
    (with correct sign). Otherwise the low word is negative and still
1827
    contains relative y-coordinate, and to the high word
1827
    contains relative y-coordinate, and to the high word
1828
    1 should be added.
1828
    1 should be added.
1829
 
1829
 
1830
------------- Subfunction 2 - states of the mouse buttons ------------
1830
------------- Subfunction 2 - states of the mouse buttons ------------
1831
Parameters:
1831
Parameters:
1832
  * eax = 37 - function number
1832
  * eax = 37 - function number
1833
  * ebx = 2 - subfunction number
1833
  * ebx = 2 - subfunction number
1834
Returned value:
1834
Returned value:
1835
  * eax = bits 0-4 equal to subfunction 3
1835
  * eax = bits 0-4 equal to subfunction 3
1836
 
1836
 
1837
------- Subfunction 3 - states and events of the mouse buttons -------
1837
------- Subfunction 3 - states and events of the mouse buttons -------
1838
Parameters:
1838
Parameters:
1839
  * eax = 37 - function number
1839
  * eax = 37 - function number
1840
  * ebx = 3 - subfunction number
1840
  * ebx = 3 - subfunction number
1841
Returned value:
1841
Returned value:
1842
  * eax contains next information:
1842
  * eax contains next information:
1843
 
1843
 
1844
states:
1844
states:
1845
  * bit 0 is set = left button is held
1845
  * bit 0 is set = left button is held
1846
  * bit 1 is set = right button is held
1846
  * bit 1 is set = right button is held
1847
  * bit 2 is set = middle button is held
1847
  * bit 2 is set = middle button is held
1848
  * bit 3 is set = 4th button is held
1848
  * bit 3 is set = 4th button is held
1849
  * bit 4 is set = 5th button is held
1849
  * bit 4 is set = 5th button is held
1850
 
1850
 
1851
events:
1851
events:
1852
  * bit 8 is set = left button is pressed
1852
  * bit 8 is set = left button is pressed
1853
  * bit 9 is set = right button is pressed
1853
  * bit 9 is set = right button is pressed
1854
  * bit 10 is set = middle button is pressed
1854
  * bit 10 is set = middle button is pressed
1855
 
1855
 
1856
  * bit 15 is set = vertical scroll is used
1856
  * bit 15 is set = vertical scroll is used
1857
 
1857
 
1858
  * bit 16 is set = left button is released
1858
  * bit 16 is set = left button is released
1859
  * bit 17 is set = right button is released
1859
  * bit 17 is set = right button is released
1860
  * bit 18 is set = middle button is released
1860
  * bit 18 is set = middle button is released
1861
 
1861
 
1862
  * bit 23 is set = horisontal scroll is used
1862
  * bit 23 is set = horisontal scroll is used
1863
 
1863
 
1864
  * bit 24 is set = doubleclick by left button
1864
  * bit 24 is set = doubleclick by left button
1865
 
1865
 
1866
-------------------- Subfunction 4 - load cursor ---------------------
1866
-------------------- Subfunction 4 - load cursor ---------------------
1867
Parameters:
1867
Parameters:
1868
  * eax = 37 - function number
1868
  * eax = 37 - function number
1869
  * ebx = 4 - subfunction number
1869
  * ebx = 4 - subfunction number
1870
  * dx = data source:
1870
  * dx = data source:
1871
  * dx = LOAD_FROM_FILE = 0 - data in a file
1871
  * dx = LOAD_FROM_FILE = 0 - data in a file
1872
    * ecx = pointer to full path to the cursor file
1872
    * ecx = pointer to full path to the cursor file
1873
    * the file must be in the format .cur, which is standard for
1873
    * the file must be in the format .cur, which is standard for
1874
      MS Windows, at that of the size 32*32 pixels
1874
      MS Windows, at that of the size 32*32 pixels
1875
  * dx = LOAD_FROM_MEM = 1 - data of file are already loaded in memory
1875
  * dx = LOAD_FROM_MEM = 1 - data of file are already loaded in memory
1876
    * ecx = pointer to data of the cursor file
1876
    * ecx = pointer to data of the cursor file
1877
    * the data format is the same as in the previous case
1877
    * the data format is the same as in the previous case
1878
  * dx = LOAD_INDIRECT = 2 - data in memory
1878
  * dx = LOAD_INDIRECT = 2 - data in memory
1879
    * ecx = pointer to cursor image in the format ARGB 32*32 pixels
1879
    * ecx = pointer to cursor image in the format ARGB 32*32 pixels
1880
    * edx = 0xXXYY0002, where
1880
    * edx = 0xXXYY0002, where
1881
      * XX = x-coordinate of cursor hotspot
1881
      * XX = x-coordinate of cursor hotspot
1882
      * YY = y-coordinate
1882
      * YY = y-coordinate
1883
      * 0 <= XX, YY <= 31
1883
      * 0 <= XX, YY <= 31
1884
Returned value:
1884
Returned value:
1885
  * eax = 0 - failed
1885
  * eax = 0 - failed
1886
  * otherwise eax = cursor handle
1886
  * otherwise eax = cursor handle
1887
 
1887
 
1888
--------------------- Subfunction 5 - set cursor ---------------------
1888
--------------------- Subfunction 5 - set cursor ---------------------
1889
Sets new cursor for the window of the current thread.
1889
Sets new cursor for the window of the current thread.
1890
Parameters:
1890
Parameters:
1891
  * eax = 37 - function number
1891
  * eax = 37 - function number
1892
  * ebx = 5 - subfunction number
1892
  * ebx = 5 - subfunction number
1893
  * ecx = cursor handle
1893
  * ecx = cursor handle
1894
Returned value:
1894
Returned value:
1895
  * eax = handle of previous cursor
1895
  * eax = handle of previous cursor
1896
Remarks:
1896
Remarks:
1897
  * If the handle is incorrect, the function restores the default
1897
  * If the handle is incorrect, the function restores the default
1898
    cursor (standard arrow). In particular, ecx=0 restores it.
1898
    cursor (standard arrow). In particular, ecx=0 restores it.
1899
 
1899
 
1900
------------------- Subfunction 6 - delete cursor --------------------
1900
------------------- Subfunction 6 - delete cursor --------------------
1901
Parameters:
1901
Parameters:
1902
  * eax = 37 - function number
1902
  * eax = 37 - function number
1903
  * ebx = 6 - subfunction number
1903
  * ebx = 6 - subfunction number
1904
  * ecx = cursor handle
1904
  * ecx = cursor handle
1905
Returned value:
1905
Returned value:
1906
  * eax destroyed
1906
  * eax destroyed
1907
Remarks:
1907
Remarks:
1908
  * The cursor must be loaded previously by the current thread
1908
  * The cursor must be loaded previously by the current thread
1909
    (with the call to subfunction 4). The function does not delete
1909
    (with the call to subfunction 4). The function does not delete
1910
    system cursors and cursors, loaded by another applications.
1910
    system cursors and cursors, loaded by another applications.
1911
  * If the active cursor (set by subfunction 5) is deleted,
1911
  * If the active cursor (set by subfunction 5) is deleted,
1912
    the system restores the default cursor (standard arrow).
1912
    the system restores the default cursor (standard arrow).
1913
 
1913
 
1914
------------------ Subfunction 7 - get scroll data -------------------
1914
------------------ Subfunction 7 - get scroll data -------------------
1915
Parameters:
1915
Parameters:
1916
  * eax = 37 - function number
1916
  * eax = 37 - function number
1917
  * ebx = 7 - subfunction number
1917
  * ebx = 7 - subfunction number
1918
Returned value:
1918
Returned value:
1919
  * eax = [horizontal offset]*65536 + [vertical offset]
1919
  * eax = [horizontal offset]*65536 + [vertical offset]
1920
Remarks:
1920
Remarks:
1921
  * Scroll data is available for active window only.
1921
  * Scroll data is available for active window only.
1922
  * Values are zeroed after reading.
1922
  * Values are zeroed after reading.
1923
  * Values are signed.
1923
  * Values are signed.
1924
 
1924
 
1925
-------- Subfunction 8 - load cursor, specifying the encoding --------
1925
-------- Subfunction 8 - load cursor, specifying the encoding --------
1926
Parameters:
1926
Parameters:
1927
  * eax = 37 - function number
1927
  * eax = 37 - function number
1928
  * ebx = 8 - subfunction number
1928
  * ebx = 8 - subfunction number
1929
  * ecx = pointer to the cursor file path string
1929
  * ecx = pointer to the cursor file path string
1930
  * edx = string encoding, details can be found in function 80 description.
1930
  * edx = string encoding, details can be found in function 80 description.
1931
Returned value:
1931
Returned value:
1932
  * eax = cursor handle, 0 - failed
1932
  * eax = cursor handle, 0 - failed
1933
 
1933
 
1934
---------------------- Constants for registers: ----------------------
1934
---------------------- Constants for registers: ----------------------
1935
  eax - SF_MOUSE_GET (37)
1935
  eax - SF_MOUSE_GET (37)
1936
  ebx - SSF_SCREEN_POSITION (0), SSF_WINDOW_POSITION (1),
1936
  ebx - SSF_SCREEN_POSITION (0), SSF_WINDOW_POSITION (1),
1937
    SSF_BUTTON (2), SSF_BUTTON_EXT (3), SSF_LOAD_CURSOR (4),
1937
    SSF_BUTTON (2), SSF_BUTTON_EXT (3), SSF_LOAD_CURSOR (4),
1938
    SSF_SET_CURSOR (5), SSF_DEL_CURSOR (6), SSF_SCROLL_DATA (7)
1938
    SSF_SET_CURSOR (5), SSF_DEL_CURSOR (6), SSF_SCROLL_DATA (7)
1939
======================================================================
1939
======================================================================
1940
====================== Function 38 - draw line. ======================
1940
====================== Function 38 - draw line. ======================
1941
======================================================================
1941
======================================================================
1942
Parameters:
1942
Parameters:
1943
  * eax = 38 - function number
1943
  * eax = 38 - function number
1944
  * ebx = [start coordinate on axis x]*65536 +
1944
  * ebx = [start coordinate on axis x]*65536 +
1945
              [end coordinate on axis x]
1945
              [end coordinate on axis x]
1946
  * ecx = [start coordinate on axis y]*65536 +
1946
  * ecx = [start coordinate on axis y]*65536 +
1947
              [end coordinate on axis y]
1947
              [end coordinate on axis y]
1948
  * edx = 0x00RRGGBB - color
1948
  * edx = 0x00RRGGBB - color
1949
    edx = 0x01xxxxxx - draw inversed line
1949
    edx = 0x01xxxxxx - draw inversed line
1950
          (low 24 bits are ignored)
1950
          (low 24 bits are ignored)
1951
Returned value:
1951
Returned value:
1952
  * function does not return value
1952
  * function does not return value
1953
Remarks:
1953
Remarks:
1954
  * Coordinates are relative to the window.
1954
  * Coordinates are relative to the window.
1955
  * End point is also drawn.
1955
  * End point is also drawn.
1956
 
1956
 
1957
---------------------- Constants for registers: ----------------------
1957
---------------------- Constants for registers: ----------------------
1958
  eax - SF_DRAW_LINE (38)
1958
  eax - SF_DRAW_LINE (38)
1959
======================================================================
1959
======================================================================
1960
== Function 39, subfunction 1 - get a size of the background image. ==
1960
== Function 39, subfunction 1 - get a size of the background image. ==
1961
======================================================================
1961
======================================================================
1962
Parameters:
1962
Parameters:
1963
  * eax = 39 - function number
1963
  * eax = 39 - function number
1964
  * ebx = 1 - subfunction number
1964
  * ebx = 1 - subfunction number
1965
Returned value:
1965
Returned value:
1966
  * eax = [width]*65536 + [height]
1966
  * eax = [width]*65536 + [height]
1967
Remarks:
1967
Remarks:
1968
  * There is a pair function to set sizes of background image -
1968
  * There is a pair function to set sizes of background image -
1969
    subfunction 1 of function 15. After which it is necessary,
1969
    subfunction 1 of function 15. After which it is necessary,
1970
    of course, anew to define image.
1970
    of course, anew to define image.
1971
 
1971
 
1972
---------------------- Constants for registers: ----------------------
1972
---------------------- Constants for registers: ----------------------
1973
  eax - SF_BACKGROUND_GET (39)
1973
  eax - SF_BACKGROUND_GET (39)
1974
======================================================================
1974
======================================================================
1975
== Function 39, subfunction 2 - get pixel from the background image. =
1975
== Function 39, subfunction 2 - get pixel from the background image. =
1976
======================================================================
1976
======================================================================
1977
Parameters:
1977
Parameters:
1978
  * eax = 39 - function number
1978
  * eax = 39 - function number
1979
  * ebx = 2 - subfunction number
1979
  * ebx = 2 - subfunction number
1980
  * ecx = offset
1980
  * ecx = offset
1981
Returned value:
1981
Returned value:
1982
  * eax = 0x00RRGGBB - pixel color, if offset is valid
1982
  * eax = 0x00RRGGBB - pixel color, if offset is valid
1983
    (less than 0x160000-16)
1983
    (less than 0x160000-16)
1984
  * eax = 2 otherwise
1984
  * eax = 2 otherwise
1985
Remarks:
1985
Remarks:
1986
  * Do not rely on returned value for invalid offsets, it may be
1986
  * Do not rely on returned value for invalid offsets, it may be
1987
    changed in future kernel versions.
1987
    changed in future kernel versions.
1988
  * Offset for pixel with coordinates (x,y)
1988
  * Offset for pixel with coordinates (x,y)
1989
    is calculated as (x+y*xsize)*3.
1989
    is calculated as (x+y*xsize)*3.
1990
  * There is a pair function to set pixel on the background image -
1990
  * There is a pair function to set pixel on the background image -
1991
    subfunction 2 of function 15.
1991
    subfunction 2 of function 15.
1992
 
1992
 
1993
---------------------- Constants for registers: ----------------------
1993
---------------------- Constants for registers: ----------------------
1994
  eax - SF_BACKGROUND_GET (39)
1994
  eax - SF_BACKGROUND_GET (39)
1995
======================================================================
1995
======================================================================
1996
== Function 39, subfunction 4 - get drawing mode for the background. =
1996
== Function 39, subfunction 4 - get drawing mode for the background. =
1997
======================================================================
1997
======================================================================
1998
Parameters:
1998
Parameters:
1999
  * eax = 39 - function number
1999
  * eax = 39 - function number
2000
  * ebx = 4 - subfunction number
2000
  * ebx = 4 - subfunction number
2001
Returned value:
2001
Returned value:
2002
  * eax = 1 - tile
2002
  * eax = 1 - tile
2003
  * eax = 2 - stretch
2003
  * eax = 2 - stretch
2004
Remarks:
2004
Remarks:
2005
  * There is a pair function to set drawing mode -
2005
  * There is a pair function to set drawing mode -
2006
    subfunction 4 of function 15.
2006
    subfunction 4 of function 15.
2007
 
2007
 
2008
---------------------- Constants for registers: ----------------------
2008
---------------------- Constants for registers: ----------------------
2009
  eax - SF_BACKGROUND_GET (39)
2009
  eax - SF_BACKGROUND_GET (39)
2010
======================================================================
2010
======================================================================
2011
=========== Function 40 - set the mask for expected events. ==========
2011
=========== Function 40 - set the mask for expected events. ==========
2012
======================================================================
2012
======================================================================
2013
The mask for expected events affects function working with events
2013
The mask for expected events affects function working with events
2014
10, 11, 23 - they notify only about events allowed by this mask.
2014
10, 11, 23 - they notify only about events allowed by this mask.
2015
Parameters:
2015
Parameters:
2016
  * eax = 40 - function number
2016
  * eax = 40 - function number
2017
  * ebx = mask: bit i corresponds to event i+1 (see list of events)
2017
  * ebx = mask: bit i corresponds to event i+1 (see list of events)
2018
    (set bit permits notice on event)
2018
    (set bit permits notice on event)
2019
    bit 31: mouse active/inactive filter
2019
    bit 31: mouse active/inactive filter
2020
    bit 31 = 0 - inactive window receive mouse events
2020
    bit 31 = 0 - inactive window receive mouse events
2021
    bit 31 = 1 - inactive window does not receive mouse events
2021
    bit 31 = 1 - inactive window does not receive mouse events
2022
    bit 30: cursor position filter
2022
    bit 30: cursor position filter
2023
    bit 30 = 0 = the window receive mouse events if cursor
2023
    bit 30 = 0 = the window receive mouse events if cursor
2024
                 outside window
2024
                 outside window
2025
    bit 30 = 1 - the window does not receive mouse events if cursor
2025
    bit 30 = 1 - the window does not receive mouse events if cursor
2026
                 outside window
2026
                 outside window
2027
Returned value:
2027
Returned value:
2028
  * eax = previous value of mask
2028
  * eax = previous value of mask
2029
Remarks:
2029
Remarks:
2030
  * Default mask (7=111b) enables nofices about redraw,
2030
  * Default mask (7=111b) enables nofices about redraw,
2031
    keys and buttons. This is enough for many applications.
2031
    keys and buttons. This is enough for many applications.
2032
  * Events prohibited in the mask are saved anyway, when come;
2032
  * Events prohibited in the mask are saved anyway, when come;
2033
    they are simply not informed with event functions.
2033
    they are simply not informed with event functions.
2034
  * Event functions take into account the mask on moment of
2034
  * Event functions take into account the mask on moment of
2035
    function call, not on moment of event arrival.
2035
    function call, not on moment of event arrival.
2036
 
2036
 
2037
---------------------- Constants for registers: ----------------------
2037
---------------------- Constants for registers: ----------------------
2038
  eax - SF_SET_EVENTS_MASK (40)
2038
  eax - SF_SET_EVENTS_MASK (40)
2039
======================================================================
2039
======================================================================
2040
================ Function 43 - input/output to a port. ===============
2040
================ Function 43 - input/output to a port. ===============
2041
======================================================================
2041
======================================================================
2042
 
2042
 
2043
------------------------ Output data to port -------------------------
2043
------------------------ Output data to port -------------------------
2044
Parameters:
2044
Parameters:
2045
  * eax = 43 - function number
2045
  * eax = 43 - function number
2046
  * bl = byte for output
2046
  * bl = byte for output
2047
  * ecx = port number 0xnnnn (from 0 to 0xFFFF)
2047
  * ecx = port number 0xnnnn (from 0 to 0xFFFF)
2048
Returned value:
2048
Returned value:
2049
  * eax = 0 - success
2049
  * eax = 0 - success
2050
  * eax = 1 - the thread has not reserved the selected port
2050
  * eax = 1 - the thread has not reserved the selected port
2051
 
2051
 
2052
------------------------ Input data from port ------------------------
2052
------------------------ Input data from port ------------------------
2053
Parameters:
2053
Parameters:
2054
  * eax = 43 - function number
2054
  * eax = 43 - function number
2055
  * ebx is ignored
2055
  * ebx is ignored
2056
  * ecx = 0x8000nnnn, where nnnn = port number (from 0 to 0xFFFF)
2056
  * ecx = 0x8000nnnn, where nnnn = port number (from 0 to 0xFFFF)
2057
Returned value:
2057
Returned value:
2058
  * eax = 0 - success, thus ebx = entered byte
2058
  * eax = 0 - success, thus ebx = entered byte
2059
  * eax = 1 - the thread has not reserved the selected port
2059
  * eax = 1 - the thread has not reserved the selected port
2060
Remarks:
2060
Remarks:
2061
  * Previously the thread must reserve the selected port
2061
  * Previously the thread must reserve the selected port
2062
    for itself by function 46.
2062
    for itself by function 46.
2063
  * Instead of call to this function it is better to use
2063
  * Instead of call to this function it is better to use
2064
    processor instructions in/out - this is much
2064
    processor instructions in/out - this is much
2065
    faster and a bit shorter and easier.
2065
    faster and a bit shorter and easier.
2066
 
2066
 
2067
---------------------- Constants for registers: ----------------------
2067
---------------------- Constants for registers: ----------------------
2068
  eax - SF_PORT_IN_OUT (43)
2068
  eax - SF_PORT_IN_OUT (43)
2069
======================================================================
2069
======================================================================
2070
====== Function 46 - reserve/free a group of input/output ports. =====
2070
====== Function 46 - reserve/free a group of input/output ports. =====
2071
======================================================================
2071
======================================================================
2072
To work with reserved ports an application can access directly by
2072
To work with reserved ports an application can access directly by
2073
commands in/out (recommended way) and can use function 43
2073
commands in/out (recommended way) and can use function 43
2074
(not recommended way).
2074
(not recommended way).
2075
Parameters:
2075
Parameters:
2076
  * eax = 46 - function number
2076
  * eax = 46 - function number
2077
  * ebx = 0 - reserve, 1 - free
2077
  * ebx = 0 - reserve, 1 - free
2078
  * ecx = start port number
2078
  * ecx = start port number
2079
  * edx = end port number (inclusive)
2079
  * edx = end port number (inclusive)
2080
Returned value:
2080
Returned value:
2081
  * eax = 0 - success
2081
  * eax = 0 - success
2082
  * eax = 1 - error
2082
  * eax = 1 - error
2083
Remarks:
2083
Remarks:
2084
  * For ports reservation: an error occurs if and only if
2084
  * For ports reservation: an error occurs if and only if
2085
    one from the following condition satisfies:
2085
    one from the following condition satisfies:
2086
    * start port is more than end port;
2086
    * start port is more than end port;
2087
    * the selected range contains incorrect port number
2087
    * the selected range contains incorrect port number
2088
      (correct are from 0 to 0xFFFF);
2088
      (correct are from 0 to 0xFFFF);
2089
    * limit for the total number of reserved areas is exceeded
2089
    * limit for the total number of reserved areas is exceeded
2090
      (maximum 255 are allowed);
2090
      (maximum 255 are allowed);
2091
    * the selected range intersects with any of earlier reserved
2091
    * the selected range intersects with any of earlier reserved
2092
  * For ports free: an error is an attempt to free range,
2092
  * For ports free: an error is an attempt to free range,
2093
    that was not earlier reserved by this function
2093
    that was not earlier reserved by this function
2094
    (with same ecx,edx).
2094
    (with same ecx,edx).
2095
  * If an error occurs (for both cases) function performs no action.
2095
  * If an error occurs (for both cases) function performs no action.
2096
  * At booting the system reserves for itself ports
2096
  * At booting the system reserves for itself ports
2097
    0..0x2d, 0x30..0x4d, 0x50..0xdf, 0xe5..0xff (inclusively).
2097
    0..0x2d, 0x30..0x4d, 0x50..0xdf, 0xe5..0xff (inclusively).
2098
  * When a thread terminates, all reserved by it ports
2098
  * When a thread terminates, all reserved by it ports
2099
    are freed automatically.
2099
    are freed automatically.
2100
 
2100
 
2101
---------------------- Constants for registers: ----------------------
2101
---------------------- Constants for registers: ----------------------
2102
  eax - SF_SET_PORTS (46)
2102
  eax - SF_SET_PORTS (46)
2103
======================================================================
2103
======================================================================
2104
============= Function 47 - draw a number in the window. =============
2104
============= Function 47 - draw a number in the window. =============
2105
======================================================================
2105
======================================================================
2106
Parameters:
2106
Parameters:
2107
  * eax = 47 - function number
2107
  * eax = 47 - function number
2108
  * ebx = parameters of conversion number to text:
2108
  * ebx = parameters of conversion number to text:
2109
    * bl = 0 - ecx contains number
2109
    * bl = 0 - ecx contains number
2110
    * bl = 1 - ecx contains pointer to dword/qword-number
2110
    * bl = 1 - ecx contains pointer to dword/qword-number
2111
    * bh = 0 - display in decimal number system
2111
    * bh = 0 - display in decimal number system
2112
    * bh = 1 - display in hexadecimal system
2112
    * bh = 1 - display in hexadecimal system
2113
    * bh = 2 - display in binary system
2113
    * bh = 2 - display in binary system
2114
    * bits 16-21 = how many digits to display
2114
    * bits 16-21 = how many digits to display
2115
    * bits 22-29 reserved and must be set to 0
2115
    * bits 22-29 reserved and must be set to 0
2116
    * bit 30 set = display qword (64-bit) number (must be bl=1)
2116
    * bit 30 set = display qword (64-bit) number (must be bl=1)
2117
    * bit 31 set = do not display leading zeroes of the number
2117
    * bit 31 set = do not display leading zeroes of the number
2118
  * ecx = number (if bl=0) or pointer (if bl=1)
2118
  * ecx = number (if bl=0) or pointer (if bl=1)
2119
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2119
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2120
  * esi = 0xXXRRGGBB, where
2120
  * esi = 0xXXRRGGBB, where
2121
    * RR, GG, BB specify text color
2121
    * RR, GG, BB specify text color
2122
    * XX = 0B0FCSSS (bits):
2122
    * XX = 0B0FCSSS (bits):
2123
      * B=1 - fill background (color = edi)
2123
      * B=1 - fill background (color = edi)
2124
      * F specifies the font:
2124
      * F specifies the font:
2125
        0 = 6x9
2125
        0 = 6x9
2126
        1 = 8x16
2126
        1 = 8x16
2127
      * C=0 - draw to the window,
2127
      * C=0 - draw to the window,
2128
        C=1 - draw to the user buffer (edi)
2128
        C=1 - draw to the user buffer (edi)
2129
      * SSS = (size multiplier)-1, so 0 = x1, 7 = x8
2129
      * SSS = (size multiplier)-1, so 0 = x1, 7 = x8
2130
Returned value:
2130
Returned value:
2131
  * function does not return value
2131
  * function does not return value
2132
Remarks:
2132
Remarks:
2133
  * The given length must not exceed 60.
2133
  * The given length must not exceed 60.
2134
  * The exactly given amount of digits is output. If number is small
2134
  * The exactly given amount of digits is output. If number is small
2135
    and can be written by smaller amount of digits, it is supplemented
2135
    and can be written by smaller amount of digits, it is supplemented
2136
    by leading zeroes; if the number is big and can not be written by
2136
    by leading zeroes; if the number is big and can not be written by
2137
    given amount of digits, extra digits are not drawn.
2137
    given amount of digits, extra digits are not drawn.
2138
 
2138
 
2139
---------------------- Constants for registers: ----------------------
2139
---------------------- Constants for registers: ----------------------
2140
  eax - SF_DRAW_NUMBER (47)
2140
  eax - SF_DRAW_NUMBER (47)
2141
======================================================================
2141
======================================================================
2142
========= Function 48, subfunction 0 - apply screen settings. ========
2142
========= Function 48, subfunction 0 - apply screen settings. ========
2143
======================================================================
2143
======================================================================
2144
Parameters:
2144
Parameters:
2145
  * eax = 48 - function number
2145
  * eax = 48 - function number
2146
  * ebx = 0 - subfunction number
2146
  * ebx = 0 - subfunction number
2147
  * ecx = 0 - reserved
2147
  * ecx = 0 - reserved
2148
Returned value:
2148
Returned value:
2149
  * function does not return value
2149
  * function does not return value
2150
Remarks:
2150
Remarks:
2151
  * Function redraws the screen after parameters change by
2151
  * Function redraws the screen after parameters change by
2152
    subfunctions 1 and 2.
2152
    subfunctions 1 and 2.
2153
  * Function call without prior call to one of indicated subfunctions
2153
  * Function call without prior call to one of indicated subfunctions
2154
    is ignored.
2154
    is ignored.
2155
  * Function call with nonzero ecx is ignored.
2155
  * Function call with nonzero ecx is ignored.
2156
 
2156
 
2157
---------------------- Constants for registers: ----------------------
2157
---------------------- Constants for registers: ----------------------
2158
  eax - SF_STYLE_SETTINGS (48)
2158
  eax - SF_STYLE_SETTINGS (48)
2159
  ebx - SSF_APPLY (0)
2159
  ebx - SSF_APPLY (0)
2160
======================================================================
2160
======================================================================
2161
=========== Function 48, subfunction 1 - set button style. ===========
2161
=========== Function 48, subfunction 1 - set button style. ===========
2162
======================================================================
2162
======================================================================
2163
Parameters:
2163
Parameters:
2164
  * eax = 48 - function number
2164
  * eax = 48 - function number
2165
  * ebx = 1 - subfunction number
2165
  * ebx = 1 - subfunction number
2166
  * ecx = button style:
2166
  * ecx = button style:
2167
    * 0 = flat
2167
    * 0 = flat
2168
    * 1 = 3d
2168
    * 1 = 3d
2169
Returned value:
2169
Returned value:
2170
  * function does not return value
2170
  * function does not return value
2171
Remarks:
2171
Remarks:
2172
  * After call to this function one should redraw the screen by
2172
  * After call to this function one should redraw the screen by
2173
    subfunction 0.
2173
    subfunction 0.
2174
  * Button style influences only to their draw of function 8.
2174
  * Button style influences only to their draw of function 8.
2175
 
2175
 
2176
---------------------- Constants for registers: ----------------------
2176
---------------------- Constants for registers: ----------------------
2177
  eax - SF_STYLE_SETTINGS (48)
2177
  eax - SF_STYLE_SETTINGS (48)
2178
  ebx - SSF_SET_BUTTON_STYLE (1)
2178
  ebx - SSF_SET_BUTTON_STYLE (1)
2179
======================================================================
2179
======================================================================
2180
====== Function 48, subfunction 2 - set standard window colors. ======
2180
====== Function 48, subfunction 2 - set standard window colors. ======
2181
======================================================================
2181
======================================================================
2182
Parameters:
2182
Parameters:
2183
  * eax = 48 - function number
2183
  * eax = 48 - function number
2184
  * ebx = 2 - subfunction number
2184
  * ebx = 2 - subfunction number
2185
  * ecx = pointer to the color table
2185
  * ecx = pointer to the color table
2186
  * edx = size of the color table
2186
  * edx = size of the color table
2187
    (must be 40 bytes for future compatibility)
2187
    (must be 40 bytes for future compatibility)
2188
Format of the color table is shown in description of subfunction 3.
2188
Format of the color table is shown in description of subfunction 3.
2189
Returned value:
2189
Returned value:
2190
  * function does not return value
2190
  * function does not return value
2191
Remarks:
2191
Remarks:
2192
  * After call to this function one should redraw the screen by
2192
  * After call to this function one should redraw the screen by
2193
    subfunction 0.
2193
    subfunction 0.
2194
  * Table of standard colors influences only to applications,
2194
  * Table of standard colors influences only to applications,
2195
    which receive this table obviously (by subfunction 3)
2195
    which receive this table obviously (by subfunction 3)
2196
    and use it (specifying colors from it to drawing functions).
2196
    and use it (specifying colors from it to drawing functions).
2197
  * Table of standard colors is included in skin and is installed
2197
  * Table of standard colors is included in skin and is installed
2198
    anew with skin installation (by subfunction 8).
2198
    anew with skin installation (by subfunction 8).
2199
  * Color table can be viewed/changed interactively with
2199
  * Color table can be viewed/changed interactively with
2200
    the application 'desktop'.
2200
    the application 'desktop'.
2201
 
2201
 
2202
---------------------- Constants for registers: ----------------------
2202
---------------------- Constants for registers: ----------------------
2203
  eax - SF_STYLE_SETTINGS (48)
2203
  eax - SF_STYLE_SETTINGS (48)
2204
  ebx - SSF_SET_COLORS (2)
2204
  ebx - SSF_SET_COLORS (2)
2205
======================================================================
2205
======================================================================
2206
====== Function 48, subfunction 3 - get standard window colors. ======
2206
====== Function 48, subfunction 3 - get standard window colors. ======
2207
======================================================================
2207
======================================================================
2208
Parameters:
2208
Parameters:
2209
  * eax = 48 - function number
2209
  * eax = 48 - function number
2210
  * ebx = 3 - subfunction number
2210
  * ebx = 3 - subfunction number
2211
  * ecx = pointer to the buffer with size edx bytes,
2211
  * ecx = pointer to the buffer with size edx bytes,
2212
    where table will be written
2212
    where table will be written
2213
  * edx = size of color table
2213
  * edx = size of color table
2214
    (must be 40 bytes for future compatibility)
2214
    (must be 40 bytes for future compatibility)
2215
Returned value:
2215
Returned value:
2216
  * function does not return value
2216
  * function does not return value
2217
Format of the color table:
2217
Format of the color table:
2218
each item is dword-value for color 0x00RRGGBB
2218
each item is dword-value for color 0x00RRGGBB
2219
  * +0: dword: frames - color of frame
2219
  * +0: dword: frames - color of frame
2220
  * +4: dword: grab - color of header
2220
  * +4: dword: grab - color of header
2221
  * +8: dword: grab_button - color of button on header bar
2221
  * +8: dword: grab_button - color of button on header bar
2222
  * +12 = +0xC: dword: grab_button_text - color of text on button
2222
  * +12 = +0xC: dword: grab_button_text - color of text on button
2223
    on header bar
2223
    on header bar
2224
  * +16 = +0x10: dword: grab_text - color of text on header
2224
  * +16 = +0x10: dword: grab_text - color of text on header
2225
  * +20 = +0x14: dword: work - color of working area
2225
  * +20 = +0x14: dword: work - color of working area
2226
  * +24 = +0x18: dword: work_button - color of button in working area
2226
  * +24 = +0x18: dword: work_button - color of button in working area
2227
  * +28 = +0x1C: dword: work_button_text - color of text on button
2227
  * +28 = +0x1C: dword: work_button_text - color of text on button
2228
    in working area
2228
    in working area
2229
  * +32 = +0x20: dword: work_text - color of text in working area
2229
  * +32 = +0x20: dword: work_text - color of text in working area
2230
  * +36 = +0x24: dword: work_graph - color of graphics in working area
2230
  * +36 = +0x24: dword: work_graph - color of graphics in working area
2231
Remarks:
2231
Remarks:
2232
  * Structure of the color table is described in the standard
2232
  * Structure of the color table is described in the standard
2233
    include file 'macros.inc' as 'system_colors'; for example,
2233
    include file 'macros.inc' as 'system_colors'; for example,
2234
    it is possible to write:
2234
    it is possible to write:
2235
        sc      system_colors           ; variable declaration
2235
        sc      system_colors           ; variable declaration
2236
        ...                             ; somewhere one must call
2236
        ...                             ; somewhere one must call
2237
                                        ; this function with ecx=sc
2237
                                        ; this function with ecx=sc
2238
        mov     ecx, [sc.work_button_text]      ; read text color on
2238
        mov     ecx, [sc.work_button_text]      ; read text color on
2239
                                        ; buttin in working area
2239
                                        ; buttin in working area
2240
  * A program itself desides to use or not to use color table.
2240
  * A program itself desides to use or not to use color table.
2241
    For usage program must simply at calls to drawing functions select
2241
    For usage program must simply at calls to drawing functions select
2242
    color taken from the table.
2242
    color taken from the table.
2243
  * At change of the table of standard colors (by subfunction 2 with
2243
  * At change of the table of standard colors (by subfunction 2 with
2244
    the subsequent application of changes by subfunction 0 or
2244
    the subsequent application of changes by subfunction 0 or
2245
    at skin set by subfunction 8) the system sends to all windows
2245
    at skin set by subfunction 8) the system sends to all windows
2246
    redraw message (the event with code 1).
2246
    redraw message (the event with code 1).
2247
  * Color table can be viewed/changed interactively with
2247
  * Color table can be viewed/changed interactively with
2248
    the application 'desktop'.
2248
    the application 'desktop'.
2249
 
2249
 
2250
---------------------- Constants for registers: ----------------------
2250
---------------------- Constants for registers: ----------------------
2251
  eax - SF_STYLE_SETTINGS (48)
2251
  eax - SF_STYLE_SETTINGS (48)
2252
  ebx - SSF_GET_COLORS (3)
2252
  ebx - SSF_GET_COLORS (3)
2253
======================================================================
2253
======================================================================
2254
============ Function 48, subfunction 4 - get skin height. ===========
2254
============ Function 48, subfunction 4 - get skin height. ===========
2255
======================================================================
2255
======================================================================
2256
Parameters:
2256
Parameters:
2257
  * eax = 48 - function number
2257
  * eax = 48 - function number
2258
  * ebx = 4 - subfunction number
2258
  * ebx = 4 - subfunction number
2259
Returned value:
2259
Returned value:
2260
  * eax = skin height
2260
  * eax = skin height
2261
Remarks:
2261
Remarks:
2262
  * Skin height is defined as the height of a header
2262
  * Skin height is defined as the height of a header
2263
    of skinned windows.
2263
    of skinned windows.
2264
  * See also general structure of window in the description
2264
  * See also general structure of window in the description
2265
    of function 0.
2265
    of function 0.
2266
 
2266
 
2267
---------------------- Constants for registers: ----------------------
2267
---------------------- Constants for registers: ----------------------
2268
  eax - SF_STYLE_SETTINGS (48)
2268
  eax - SF_STYLE_SETTINGS (48)
2269
  ebx - SSF_GET_SKIN_HEIGHT (4)
2269
  ebx - SSF_GET_SKIN_HEIGHT (4)
2270
======================================================================
2270
======================================================================
2271
======== Function 48, subfunction 5 - get screen working area. =======
2271
======== Function 48, subfunction 5 - get screen working area. =======
2272
======================================================================
2272
======================================================================
2273
Parameters:
2273
Parameters:
2274
  * eax = 48 - function number
2274
  * eax = 48 - function number
2275
  * ebx = 5 - subfunction number
2275
  * ebx = 5 - subfunction number
2276
Returned value:
2276
Returned value:
2277
  * eax = [left]*65536 + [right]
2277
  * eax = [left]*65536 + [right]
2278
  * ebx = [top]*65536 + [bottom]
2278
  * ebx = [top]*65536 + [bottom]
2279
Remarks:
2279
Remarks:
2280
  * The screen working area defines position and coordinates of
2280
  * The screen working area defines position and coordinates of
2281
    a maximized window.
2281
    a maximized window.
2282
  * The screen working area in view of normal work is all screen
2282
  * The screen working area in view of normal work is all screen
2283
    without taskbar ('@taskbar' application).
2283
    without taskbar ('@taskbar' application).
2284
  * (left,top) are coordinates of the left upper corner,
2284
  * (left,top) are coordinates of the left upper corner,
2285
    (right,bottom) are coordinates of the right lower one.
2285
    (right,bottom) are coordinates of the right lower one.
2286
    Thus the size of working area on x axis can be calculated by
2286
    Thus the size of working area on x axis can be calculated by
2287
    formula right-left+1, on y axis - by formula bottom-right+1.
2287
    formula right-left+1, on y axis - by formula bottom-right+1.
2288
  * See also function 14,
2288
  * See also function 14,
2289
    to get sizes of all screen.
2289
    to get sizes of all screen.
2290
  * There is a pair function to set working area - subfunction 6.
2290
  * There is a pair function to set working area - subfunction 6.
2291
 
2291
 
2292
---------------------- Constants for registers: ----------------------
2292
---------------------- Constants for registers: ----------------------
2293
  eax - SF_STYLE_SETTINGS (48)
2293
  eax - SF_STYLE_SETTINGS (48)
2294
  ebx - SSF_GET_SCREEN_AREA (5)
2294
  ebx - SSF_GET_SCREEN_AREA (5)
2295
======================================================================
2295
======================================================================
2296
======== Function 48, subfunction 6 - set screen working area. =======
2296
======== Function 48, subfunction 6 - set screen working area. =======
2297
======================================================================
2297
======================================================================
2298
Parameters:
2298
Parameters:
2299
  * eax = 48 - function number
2299
  * eax = 48 - function number
2300
  * ebx = 6 - subfunction number
2300
  * ebx = 6 - subfunction number
2301
  * ecx = [left]*65536 + [right]
2301
  * ecx = [left]*65536 + [right]
2302
  * edx = [top]*65536 + [bottom]
2302
  * edx = [top]*65536 + [bottom]
2303
Returned value:
2303
Returned value:
2304
  * function does not return value
2304
  * function does not return value
2305
Remarks:
2305
Remarks:
2306
  * The screen working area defines position and coordinates of
2306
  * The screen working area defines position and coordinates of
2307
    a maximized window.
2307
    a maximized window.
2308
  * This function is used only by the application '@taskbar',
2308
  * This function is used only by the application '@taskbar',
2309
    which set working area to all screen without taskbar.
2309
    which set working area to all screen without taskbar.
2310
  * (left,top) are coordinates of the left upper corner,
2310
  * (left,top) are coordinates of the left upper corner,
2311
    (right,bottom) are coordinates of the right lower one.
2311
    (right,bottom) are coordinates of the right lower one.
2312
    Thus the size of working area on x axis can be calculated by
2312
    Thus the size of working area on x axis can be calculated by
2313
    formula right-left+1, on y axis - by formula bottom-right+1.
2313
    formula right-left+1, on y axis - by formula bottom-right+1.
2314
  * If 'left'>='right', x-coordinate of working area is not changed.
2314
  * If 'left'>='right', x-coordinate of working area is not changed.
2315
    If 'left'<0, 'left' will not be set. If 'right' is greater than or
2315
    If 'left'<0, 'left' will not be set. If 'right' is greater than or
2316
    equal to screen width, 'right' will not be set.
2316
    equal to screen width, 'right' will not be set.
2317
    Similarly on y axis.
2317
    Similarly on y axis.
2318
  * See also function 14,
2318
  * See also function 14,
2319
    to get sizes of all screen.
2319
    to get sizes of all screen.
2320
  * There is a pair function to get working area - subfunction 5.
2320
  * There is a pair function to get working area - subfunction 5.
2321
  * This function redraws the screen automatically,
2321
  * This function redraws the screen automatically,
2322
    updating coordinates and sizes of maximized windows.
2322
    updating coordinates and sizes of maximized windows.
2323
    The system sends to all windows redraw message (the event 1).
2323
    The system sends to all windows redraw message (the event 1).
2324
 
2324
 
2325
---------------------- Constants for registers: ----------------------
2325
---------------------- Constants for registers: ----------------------
2326
  eax - SF_STYLE_SETTINGS (48)
2326
  eax - SF_STYLE_SETTINGS (48)
2327
  ebx - SSF_SET_SCREEN_AREA (6)
2327
  ebx - SSF_SET_SCREEN_AREA (6)
2328
======================================================================
2328
======================================================================
2329
=========== Function 48, subfunction 7 - get skin margins. ===========
2329
=========== Function 48, subfunction 7 - get skin margins. ===========
2330
======================================================================
2330
======================================================================
2331
Returns the area of a header of a skinned window, intended for
2331
Returns the area of a header of a skinned window, intended for
2332
a text of a header.
2332
a text of a header.
2333
Parameters:
2333
Parameters:
2334
  * eax = 48 - function number
2334
  * eax = 48 - function number
2335
  * ebx = 7 - subfunction number
2335
  * ebx = 7 - subfunction number
2336
Returned value:
2336
Returned value:
2337
  * eax = [left]*65536 + [right]
2337
  * eax = [left]*65536 + [right]
2338
  * ebx = [top]*65536 + [bottom]
2338
  * ebx = [top]*65536 + [bottom]
2339
Remarks:
2339
Remarks:
2340
  * An application decides itself to use or not to use this function.
2340
  * An application decides itself to use or not to use this function.
2341
  * It is recommended to take into account returned value
2341
  * It is recommended to take into account returned value
2342
    of this function for choice of a place for drawing header text
2342
    of this function for choice of a place for drawing header text
2343
    (by function 4) or a substitute of header text
2343
    (by function 4) or a substitute of header text
2344
    (at the discretion of an application).
2344
    (at the discretion of an application).
2345
 
2345
 
2346
---------------------- Constants for registers: ----------------------
2346
---------------------- Constants for registers: ----------------------
2347
  eax - SF_STYLE_SETTINGS (48)
2347
  eax - SF_STYLE_SETTINGS (48)
2348
  ebx - SSF_GET_SKIN_MARGINS (7)
2348
  ebx - SSF_GET_SKIN_MARGINS (7)
2349
======================================================================
2349
======================================================================
2350
============= Function 48, subfunction 8 - set used skin. ============
2350
============= Function 48, subfunction 8 - set used skin. ============
2351
======================================================================
2351
======================================================================
2352
Parameters:
2352
Parameters:
2353
  * eax = 48 - function number
2353
  * eax = 48 - function number
2354
  * ebx = 8 - subfunction number
2354
  * ebx = 8 - subfunction number
2355
  * ecx = pointer to filename of the skin
2355
  * ecx = pointer to filename of the skin
2356
Returned value:
2356
Returned value:
2357
  * eax = 0 - success
2357
  * eax = 0 - success
2358
  * otherwise eax = file system error code; if file does not
2358
  * otherwise eax = file system error code; if file does not
2359
    contain valid skin, function returns error 3
2359
    contain valid skin, function returns error 3
2360
    (unknown file system).
2360
    (unknown file system).
2361
Remarks:
2361
Remarks:
2362
  * After successful skin loading the system sends to all windows
2362
  * After successful skin loading the system sends to all windows
2363
    redraw message (the event 1).
2363
    redraw message (the event 1).
2364
  * At booting the system reads skin from file 'default.skn'
2364
  * At booting the system reads skin from file 'default.skn'
2365
    on ramdisk.
2365
    on ramdisk.
2366
  * User can change the skin statically by creating hisself
2366
  * User can change the skin statically by creating hisself
2367
    'default.skn' or dynamically with the application 'desktop'.
2367
    'default.skn' or dynamically with the application 'desktop'.
2368
 
2368
 
2369
---------------------- Constants for registers: ----------------------
2369
---------------------- Constants for registers: ----------------------
2370
  eax - SF_STYLE_SETTINGS (48)
2370
  eax - SF_STYLE_SETTINGS (48)
2371
  ebx - SSF_SET_SKIN (8)
2371
  ebx - SSF_SET_SKIN (8)
2372
======================================================================
2372
======================================================================
2373
====== Function 48, subfunction 9 - get font smoothing setting. ======
2373
====== Function 48, subfunction 9 - get font smoothing setting. ======
2374
======================================================================
2374
======================================================================
2375
Parameters:
2375
Parameters:
2376
  * eax = 48 - function number
2376
  * eax = 48 - function number
2377
  * ebx = 9 - subfunction number
2377
  * ebx = 9 - subfunction number
2378
Returned value:
2378
Returned value:
2379
  * eax = 2 - subpixel, 1 - anti-aliasing, 0 - off
2379
  * eax = 2 - subpixel, 1 - anti-aliasing, 0 - off
2380
 
2380
 
2381
---------------------- Constants for registers: ----------------------
2381
---------------------- Constants for registers: ----------------------
2382
  eax - SF_STYLE_SETTINGS (48)
2382
  eax - SF_STYLE_SETTINGS (48)
2383
  ebx - SSF_GET_FONT_SMOOTH (9)
2383
  ebx - SSF_GET_FONT_SMOOTH (9)
2384
======================================================================
2384
======================================================================
2385
========== Function 48, subfunction 10 - set font smoothing. =========
2385
========== Function 48, subfunction 10 - set font smoothing. =========
2386
======================================================================
2386
======================================================================
2387
Parameters:
2387
Parameters:
2388
  * eax = 48 - function number
2388
  * eax = 48 - function number
2389
  * ebx = 10 - subfunction number
2389
  * ebx = 10 - subfunction number
2390
  * cl  = 2 - subpixel, 1 - anti-aliasing, 0 - off
2390
  * cl  = 2 - subpixel, 1 - anti-aliasing, 0 - off
2391
 
2391
 
2392
---------------------- Constants for registers: ----------------------
2392
---------------------- Constants for registers: ----------------------
2393
  eax - SF_STYLE_SETTINGS (48)
2393
  eax - SF_STYLE_SETTINGS (48)
2394
  ebx - SSF_SET_FONT_SMOOTH (10)
2394
  ebx - SSF_SET_FONT_SMOOTH (10)
2395
======================================================================
2395
======================================================================
2396
============ Function 48, subfunction 11 - get font size. ============
2396
============ Function 48, subfunction 11 - get font size. ============
2397
======================================================================
2397
======================================================================
2398
Parameters:
2398
Parameters:
2399
  * eax = 48 - function number
2399
  * eax = 48 - function number
2400
  * ebx = 9 - subfunction number
2400
  * ebx = 9 - subfunction number
2401
Returned value:
2401
Returned value:
2402
  * eax = current font height in pixels
2402
  * eax = current font height in pixels
2403
 
2403
 
2404
---------------------- Constants for registers: ----------------------
2404
---------------------- Constants for registers: ----------------------
2405
  eax - SF_STYLE_SETTINGS (48)
2405
  eax - SF_STYLE_SETTINGS (48)
2406
  ebx - SSF_GET_FONT_SIZE (11)
2406
  ebx - SSF_GET_FONT_SIZE (11)
2407
======================================================================
2407
======================================================================
2408
============ Function 48, subfunction 12 - set font size. ============
2408
============ Function 48, subfunction 12 - set font size. ============
2409
======================================================================
2409
======================================================================
2410
Parameters:
2410
Parameters:
2411
  * eax = 48 - function number
2411
  * eax = 48 - function number
2412
  * ebx = 10 - subfunction number
2412
  * ebx = 10 - subfunction number
2413
  * cl  = new font height in pixels
2413
  * cl  = new font height in pixels
2414
 
2414
 
2415
---------------------- Constants for registers: ----------------------
2415
---------------------- Constants for registers: ----------------------
2416
  eax - SF_STYLE_SETTINGS (48)
2416
  eax - SF_STYLE_SETTINGS (48)
2417
  ebx - SSF_SET_FONT_SIZE (12)
2417
  ebx - SSF_SET_FONT_SIZE (12)
2418
======================================================================
2418
======================================================================
2419
== Function 48, subfunction 13 - set skin, specifying the encoding. ==
2419
== Function 48, subfunction 13 - set skin, specifying the encoding. ==
2420
======================================================================
2420
======================================================================
2421
Parameters:
2421
Parameters:
2422
  * eax = 48 - function number
2422
  * eax = 48 - function number
2423
  * ebx = 13 - subfunction number
2423
  * ebx = 13 - subfunction number
2424
  * ecx = pointer to the skin file path string
2424
  * ecx = pointer to the skin file path string
2425
  * edx = string encoding, details can be found in function 80 description.
2425
  * edx = string encoding, details can be found in function 80 description.
2426
Returned value:
2426
Returned value:
2427
  * eax = 0 - success
2427
  * eax = 0 - success
2428
  * otherwise eax = file system error code; if file does not
2428
  * otherwise eax = file system error code; if file does not
2429
    contain valid skin, function returns error 3
2429
    contain valid skin, function returns error 3
2430
    (unknown file system).
2430
    (unknown file system).
2431
Remarks:
2431
Remarks:
2432
  * After successful skin loading the system sends to all windows
2432
  * After successful skin loading the system sends to all windows
2433
    redraw message (the event 1).
2433
    redraw message (the event 1).
2434
  * At booting the system reads skin from file 'default.skn'
2434
  * At booting the system reads skin from file 'default.skn'
2435
    on ramdisk.
2435
    on ramdisk.
2436
  * User can change the skin statically by creating hisself
2436
  * User can change the skin statically by creating hisself
2437
    'default.skn' or dynamically with the application 'desktop'.
2437
    'default.skn' or dynamically with the application 'desktop'.
2438
 
2438
 
2439
======================================================================
2439
======================================================================
2440
=========== Function 49 - Advanced Power Management (APM). ===========
2440
=========== Function 49 - Advanced Power Management (APM). ===========
2441
======================================================================
2441
======================================================================
2442
Parameters:
2442
Parameters:
2443
  * eax = 49 - function number
2443
  * eax = 49 - function number
2444
  * dx = number of the APM function
2444
  * dx = number of the APM function
2445
    (analogue of ax in APM specification)
2445
    (analogue of ax in APM specification)
2446
  * bx, cx = parameters of the APM function
2446
  * bx, cx = parameters of the APM function
2447
Returned value:
2447
Returned value:
2448
  * 16-bit registers ax, bx, cx, dx, si, di and carry flag CF
2448
  * 16-bit registers ax, bx, cx, dx, si, di and carry flag CF
2449
    are set according to the APM specification
2449
    are set according to the APM specification
2450
  * high halves of 32-bit registers eax, ebx, ecx,
2450
  * high halves of 32-bit registers eax, ebx, ecx,
2451
    edx, esi, edi are destroyed
2451
    edx, esi, edi are destroyed
2452
Remarks:
2452
Remarks:
2453
  * APM 1.2 specification is described in the document
2453
  * APM 1.2 specification is described in the document
2454
    "Advanced Power Management (APM) BIOS Specification"
2454
    "Advanced Power Management (APM) BIOS Specification"
2455
    (Revision 1.2), available at
2455
    (Revision 1.2), available at
2456
    http://www.microsoft.com/whdc/archive/amp_12.mspx;
2456
    http://www.microsoft.com/whdc/archive/amp_12.mspx;
2457
    besides it is included in famous Interrupt List by Ralf Brown
2457
    besides it is included in famous Interrupt List by Ralf Brown
2458
    (http://www.pobox.com/~ralf/files.html,
2458
    (http://www.pobox.com/~ralf/files.html,
2459
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/).
2459
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/).
2460
 
2460
 
2461
---------------------- Constants for registers: ----------------------
2461
---------------------- Constants for registers: ----------------------
2462
  eax - SF_APM (49)
2462
  eax - SF_APM (49)
2463
======================================================================
2463
======================================================================
2464
=================== Function 50 - set window shape. ==================
2464
=================== Function 50 - set window shape. ==================
2465
======================================================================
2465
======================================================================
2466
Normal windows have rectangular shape. This function can give to
2466
Normal windows have rectangular shape. This function can give to
2467
a window any shape. The shape is given by a set of points inside
2467
a window any shape. The shape is given by a set of points inside
2468
the base rectangle belonging to a window. Position and coordinates
2468
the base rectangle belonging to a window. Position and coordinates
2469
of the base rectangle are set by function 0
2469
of the base rectangle are set by function 0
2470
and changed by function 67.
2470
and changed by function 67.
2471
 
2471
 
2472
--------------------------- Set shape data ---------------------------
2472
--------------------------- Set shape data ---------------------------
2473
Parameters:
2473
Parameters:
2474
  * eax = 50 - function number
2474
  * eax = 50 - function number
2475
  * ebx = 0 - subfunction number
2475
  * ebx = 0 - subfunction number
2476
  * ecx = pointer to shape data (array of bytes 0/1)
2476
  * ecx = pointer to shape data (array of bytes 0/1)
2477
Returned value:
2477
Returned value:
2478
  * function does not return value
2478
  * function does not return value
2479
 
2479
 
2480
-------------------------- Set shape scale ---------------------------
2480
-------------------------- Set shape scale ---------------------------
2481
Parameters:
2481
Parameters:
2482
  * eax = 50 - function number
2482
  * eax = 50 - function number
2483
  * ebx = 1 - subfunction number
2483
  * ebx = 1 - subfunction number
2484
  * ecx sets a scale: each byte of data defines
2484
  * ecx sets a scale: each byte of data defines
2485
    (2^scale)*(2^scale) pixels
2485
    (2^scale)*(2^scale) pixels
2486
Returned value:
2486
Returned value:
2487
  * function does not return value
2487
  * function does not return value
2488
Remarks:
2488
Remarks:
2489
  * Default scale is 0 (scale factor is 1). If in the shape data
2489
  * Default scale is 0 (scale factor is 1). If in the shape data
2490
    one byte corresponds to one pixel, there is no necessity
2490
    one byte corresponds to one pixel, there is no necessity
2491
    to set scale.
2491
    to set scale.
2492
  * Let's designate xsize = window width (in pixels), ysize = height;
2492
  * Let's designate xsize = window width (in pixels), ysize = height;
2493
    pay attention, that they are one pixel more than defined by
2493
    pay attention, that they are one pixel more than defined by
2494
    functions 0, 67.
2494
    functions 0, 67.
2495
  * On definition of scale xsize and ysize must be divisible
2495
  * On definition of scale xsize and ysize must be divisible
2496
    on 2^scale.
2496
    on 2^scale.
2497
  * Byte of data on offset 'a' must be 0/1 and defines belonging
2497
  * Byte of data on offset 'a' must be 0/1 and defines belonging
2498
    to a window of square with the side 2^scale (if scale=0,
2498
    to a window of square with the side 2^scale (if scale=0,
2499
    this is one pixel) and coordinates of the left upper corner
2499
    this is one pixel) and coordinates of the left upper corner
2500
    (a mod (xsize shr scale), a div (xsize shr scale))
2500
    (a mod (xsize shr scale), a div (xsize shr scale))
2501
  * Data size: (xsize shr scale)*(ysize shr scale).
2501
  * Data size: (xsize shr scale)*(ysize shr scale).
2502
  * Data must be presented in the memory and not change
2502
  * Data must be presented in the memory and not change
2503
    after set of shape.
2503
    after set of shape.
2504
  * The system views the shape data at every window redraw by
2504
  * The system views the shape data at every window redraw by
2505
    function 0.
2505
    function 0.
2506
  * The call of subfunction 0 with NULL pointer results in return
2506
  * The call of subfunction 0 with NULL pointer results in return
2507
    to the rectangular shape.
2507
    to the rectangular shape.
2508
 
2508
 
2509
---------------------- Constants for registers: ----------------------
2509
---------------------- Constants for registers: ----------------------
2510
  eax - SF_SET_WINDOW_SHAPE (50)
2510
  eax - SF_SET_WINDOW_SHAPE (50)
2511
======================================================================
2511
======================================================================
2512
==================== Function 51 - create thread. ====================
2512
==================== Function 51 - create thread. ====================
2513
======================================================================
2513
======================================================================
2514
Parameters:
2514
Parameters:
2515
  * eax = 51 - function number
2515
  * eax = 51 - function number
2516
  * ebx = 1 - unique subfunction
2516
  * ebx = 1 - unique subfunction
2517
  * ecx = address of thread entry point (starting eip)
2517
  * ecx = address of thread entry point (starting eip)
2518
  * edx = pointer to thread stack (starting esp)
2518
  * edx = pointer to thread stack (starting esp)
2519
Returned value:
2519
Returned value:
2520
  * eax = -1 - error (there is too many threads)
2520
  * eax = -1 - error (there is too many threads)
2521
  * otherwise eax = TID - thread identifier
2521
  * otherwise eax = TID - thread identifier
2522
 
2522
 
2523
---------------------- Constants for registers: ----------------------
2523
---------------------- Constants for registers: ----------------------
2524
  eax - SF_CREATE_THREAD (51)
2524
  eax - SF_CREATE_THREAD (51)
2525
======================================================================
2525
======================================================================
2526
==================== Function 54, subfunction 0 ======================
2526
==================== Function 54, subfunction 0 ======================
2527
============== Get the number of slots in the clipboard. =============
2527
============== Get the number of slots in the clipboard. =============
2528
======================================================================
2528
======================================================================
2529
Parameters:
2529
Parameters:
2530
  * eax = 54 - function number
2530
  * eax = 54 - function number
2531
  * ebx = 0 - subfunction number
2531
  * ebx = 0 - subfunction number
2532
Returned value:
2532
Returned value:
2533
  * eax = slots in the clipboard
2533
  * eax = slots in the clipboard
2534
  * eax = -1 - main list area not found
2534
  * eax = -1 - main list area not found
2535
 
2535
 
2536
---------------------- Constants for registers: ----------------------
2536
---------------------- Constants for registers: ----------------------
2537
  eax - SF_CLIPBOARD (54)
2537
  eax - SF_CLIPBOARD (54)
2538
  ebx - SSF_GET_SLOT_COUNT (0)
2538
  ebx - SSF_GET_SLOT_COUNT (0)
2539
======================================================================
2539
======================================================================
2540
==================== Function 54, subfunction 1 ======================
2540
==================== Function 54, subfunction 1 ======================
2541
================= Read the data from the clipboard. ==================
2541
================= Read the data from the clipboard. ==================
2542
======================================================================
2542
======================================================================
2543
Parameters:
2543
Parameters:
2544
  * eax = 54 - function number
2544
  * eax = 54 - function number
2545
  * ebx = 1 - subfunction number
2545
  * ebx = 1 - subfunction number
2546
  * eсx = slot number
2546
  * eсx = slot number
2547
Returned value:
2547
Returned value:
2548
  * eax = if successful - pointer to a memory with data
2548
  * eax = if successful - pointer to a memory with data
2549
  * eax = 1 - error
2549
  * eax = 1 - error
2550
  * eax = -1 - main list area not found
2550
  * eax = -1 - main list area not found
2551
Remarks:
2551
Remarks:
2552
  * The function must be used in conjunction with 68.11. The
2552
  * The function must be used in conjunction with 68.11. The
2553
    application must pre-initialize the local heap by calling 68.11.
2553
    application must pre-initialize the local heap by calling 68.11.
2554
 
2554
 
2555
---------------------- Constants for registers: ----------------------
2555
---------------------- Constants for registers: ----------------------
2556
  eax - SF_CLIPBOARD (54)
2556
  eax - SF_CLIPBOARD (54)
2557
  ebx - SSF_READ_CB (1)
2557
  ebx - SSF_READ_CB (1)
2558
======================================================================
2558
======================================================================
2559
==================== Function 54, subfunction 2 ======================
2559
==================== Function 54, subfunction 2 ======================
2560
================= Write the data to the clipboard. ===================
2560
================= Write the data to the clipboard. ===================
2561
======================================================================
2561
======================================================================
2562
Parameters:
2562
Parameters:
2563
  * eax = 54 - function number
2563
  * eax = 54 - function number
2564
  * ebx = 2 - subfunction number
2564
  * ebx = 2 - subfunction number
2565
  * eсx = the number of bytes to be copied
2565
  * eсx = the number of bytes to be copied
2566
  * edx = a pointer to a buffer for data to be copied
2566
  * edx = a pointer to a buffer for data to be copied
2567
Returned value:
2567
Returned value:
2568
  * eax = 0 - success
2568
  * eax = 0 - success
2569
  * eax = 1 - error
2569
  * eax = 1 - error
2570
  * eax = -1 - main list area not found
2570
  * eax = -1 - main list area not found
2571
 
2571
 
2572
---------------------- Constants for registers: ----------------------
2572
---------------------- Constants for registers: ----------------------
2573
  eax - SF_CLIPBOARD (54)
2573
  eax - SF_CLIPBOARD (54)
2574
  ebx - SSF_WRITE_CB (2)
2574
  ebx - SSF_WRITE_CB (2)
2575
======================================================================
2575
======================================================================
2576
===================== Function 54, subfunction 3 =====================
2576
===================== Function 54, subfunction 3 =====================
2577
================ Delete the last slot in the clipboard ===============
2577
================ Delete the last slot in the clipboard ===============
2578
======================================================================
2578
======================================================================
2579
Parameters:
2579
Parameters:
2580
  * eax = 54 - function number
2580
  * eax = 54 - function number
2581
  * ebx = 3 - subfunction number
2581
  * ebx = 3 - subfunction number
2582
Returned value:
2582
Returned value:
2583
  * eax = 0 - success
2583
  * eax = 0 - success
2584
  * eax = 1 - error
2584
  * eax = 1 - error
2585
  * eax = -1 - main list area not found
2585
  * eax = -1 - main list area not found
2586
 
2586
 
2587
---------------------- Constants for registers: ----------------------
2587
---------------------- Constants for registers: ----------------------
2588
  eax - SF_CLIPBOARD (54)
2588
  eax - SF_CLIPBOARD (54)
2589
  ebx - SSF_DEL_SLOT (3)
2589
  ebx - SSF_DEL_SLOT (3)
2590
======================================================================
2590
======================================================================
2591
===================== Function 54, subfunction 4 =====================
2591
===================== Function 54, subfunction 4 =====================
2592
===================== Alarm reset the lock buffer ====================
2592
===================== Alarm reset the lock buffer ====================
2593
======================================================================
2593
======================================================================
2594
Parameters:
2594
Parameters:
2595
  * eax = 54 - function number
2595
  * eax = 54 - function number
2596
  * ebx = 4 - subfunction number
2596
  * ebx = 4 - subfunction number
2597
Returned value:
2597
Returned value:
2598
  * eax = 0 - success
2598
  * eax = 0 - success
2599
  * eax = -1 - main list area not found or no blocking
2599
  * eax = -1 - main list area not found or no blocking
2600
Remarks:
2600
Remarks:
2601
  * Used in exceptional cases, where no responsible or killed
2601
  * Used in exceptional cases, where no responsible or killed
2602
    application blocked the clipboard operations.
2602
    application blocked the clipboard operations.
2603
 
2603
 
2604
---------------------- Constants for registers: ----------------------
2604
---------------------- Constants for registers: ----------------------
2605
  eax - SF_CLIPBOARD (54)
2605
  eax - SF_CLIPBOARD (54)
2606
  ebx - SSF_UNLOCK_BUFFER (4)
2606
  ebx - SSF_UNLOCK_BUFFER (4)
2607
======================================================================
2607
======================================================================
2608
 Function 55, subfunction 55 - begin to play data on built-in speaker.
2608
 Function 55, subfunction 55 - begin to play data on built-in speaker.
2609
======================================================================
2609
======================================================================
2610
Parameters:
2610
Parameters:
2611
  * eax = 55 - function number
2611
  * eax = 55 - function number
2612
  * ebx = 55 - subfunction number
2612
  * ebx = 55 - subfunction number
2613
  * esi = pointer to data
2613
  * esi = pointer to data
2614
Returned value:
2614
Returned value:
2615
  * eax = 0 - success
2615
  * eax = 0 - success
2616
  * eax = 55 - error (speaker is off or busy)
2616
  * eax = 55 - error (speaker is off or busy)
2617
Data is an array of items with variable length.
2617
Data is an array of items with variable length.
2618
Format of each item is defined by first byte:
2618
Format of each item is defined by first byte:
2619
  * 0 = end of data
2619
  * 0 = end of data
2620
  * 1..0x80 = sets sound duration on 1/100 of second; sound note
2620
  * 1..0x80 = sets sound duration on 1/100 of second; sound note
2621
    is defined by immediate value of frequency
2621
    is defined by immediate value of frequency
2622
    * following word (2 bytes) contains frequency divider;
2622
    * following word (2 bytes) contains frequency divider;
2623
      frequency is defined as 1193180/divider
2623
      frequency is defined as 1193180/divider
2624
  * 0x81 = invalid
2624
  * 0x81 = invalid
2625
  * 0x82..0xFF = note is defined by octave and number:
2625
  * 0x82..0xFF = note is defined by octave and number:
2626
    * duration in 1/100 of second = (first byte)-0x81
2626
    * duration in 1/100 of second = (first byte)-0x81
2627
    * there is one more byte;
2627
    * there is one more byte;
2628
    * (second byte)=0xFF - delay
2628
    * (second byte)=0xFF - delay
2629
    * otherwise it looks like a*0x10+b, where b=number of the note in
2629
    * otherwise it looks like a*0x10+b, where b=number of the note in
2630
      an octave from 1 to 12, a=number of octave (beginning from 0)
2630
      an octave from 1 to 12, a=number of octave (beginning from 0)
2631
Remarks:
2631
Remarks:
2632
  * Speaker play can be disabled/enabled by
2632
  * Speaker play can be disabled/enabled by
2633
    subfunction 8 of function 18.
2633
    subfunction 8 of function 18.
2634
  * Function returns control, having informed the system
2634
  * Function returns control, having informed the system
2635
    an information on request. Play itself goes independently from
2635
    an information on request. Play itself goes independently from
2636
    the program.
2636
    the program.
2637
  * The data must be kept in the memory at least up to the end
2637
  * The data must be kept in the memory at least up to the end
2638
    of play.
2638
    of play.
2639
 
2639
 
2640
---------------------- Constants for registers: ----------------------
2640
---------------------- Constants for registers: ----------------------
2641
  eax - SF_SPEAKER_PLAY (55)
2641
  eax - SF_SPEAKER_PLAY (55)
2642
======================================================================
2642
======================================================================
2643
======================= Function 57 - PCI BIOS. ======================
2643
======================= Function 57 - PCI BIOS. ======================
2644
======================================================================
2644
======================================================================
2645
Parameters:
2645
Parameters:
2646
  * eax = 57 - function number
2646
  * eax = 57 - function number
2647
  * ebp corresponds to al in PCI BIOS specification
2647
  * ebp corresponds to al in PCI BIOS specification
2648
  * other registers are set according to PCI BIOS specification
2648
  * other registers are set according to PCI BIOS specification
2649
Returned value:
2649
Returned value:
2650
  * CF is undefined
2650
  * CF is undefined
2651
  * other registers are set according to PCI BIOS specification
2651
  * other registers are set according to PCI BIOS specification
2652
Remarks:
2652
Remarks:
2653
  * Many effects of this function can be also achieved with
2653
  * Many effects of this function can be also achieved with
2654
    corresponding subfunctions of function 62.
2654
    corresponding subfunctions of function 62.
2655
  * The function calls PCI32 BIOS extension, documented e.g. in
2655
  * The function calls PCI32 BIOS extension, documented e.g. in
2656
    http://alpha1.dyns.net/files/PCI/bios21.pdf.
2656
    http://alpha1.dyns.net/files/PCI/bios21.pdf.
2657
  * If BIOS does not support this extension, its behavior is emulated
2657
  * If BIOS does not support this extension, its behavior is emulated
2658
    (through kernel-mode analogues of subfunctions of function 62).
2658
    (through kernel-mode analogues of subfunctions of function 62).
2659
 
2659
 
2660
---------------------- Constants for registers: ----------------------
2660
---------------------- Constants for registers: ----------------------
2661
  eax - SF_PCI_BIOS (57)
2661
  eax - SF_PCI_BIOS (57)
2662
======================================================================
2662
======================================================================
2663
========== Function 60 - Inter Process Communication (IPC). ==========
2663
========== Function 60 - Inter Process Communication (IPC). ==========
2664
======================================================================
2664
======================================================================
2665
IPC is used for message dispatching from one process/thread to
2665
IPC is used for message dispatching from one process/thread to
2666
another. Previously it is necessary to agree how to interpret
2666
another. Previously it is necessary to agree how to interpret
2667
the concrete message.
2667
the concrete message.
2668
 
2668
 
2669
----------- Subfunction 1 - set the area for IPC receiving -----------
2669
----------- Subfunction 1 - set the area for IPC receiving -----------
2670
Is called by process-receiver.
2670
Is called by process-receiver.
2671
Parameters:
2671
Parameters:
2672
  * eax = 60 - function number
2672
  * eax = 60 - function number
2673
  * ebx = 1 - subfunction number
2673
  * ebx = 1 - subfunction number
2674
  * ecx = pointer to the buffer
2674
  * ecx = pointer to the buffer
2675
  * edx = size of the buffer
2675
  * edx = size of the buffer
2676
Returned value:
2676
Returned value:
2677
  * eax = 0 - always success
2677
  * eax = 0 - always success
2678
Format of IPC-buffer:
2678
Format of IPC-buffer:
2679
  * +0: dword: if nonzero, buffer is considered locked;
2679
  * +0: dword: if nonzero, buffer is considered locked;
2680
    lock/unlock the buffer, when you work with it and need that
2680
    lock/unlock the buffer, when you work with it and need that
2681
    buffer data are not changed from outside (no new messages)
2681
    buffer data are not changed from outside (no new messages)
2682
  * +4: dword: occupied place in the buffer (in bytes)
2682
  * +4: dword: occupied place in the buffer (in bytes)
2683
  * +8: first message
2683
  * +8: first message
2684
  * +8+n: second message
2684
  * +8+n: second message
2685
  * ...
2685
  * ...
2686
Format of a message:
2686
Format of a message:
2687
  * +0: dword: PID of sender
2687
  * +0: dword: PID of sender
2688
  * +4: dword: message length (not including this header)
2688
  * +4: dword: message length (not including this header)
2689
  * +8: n*byte: message data
2689
  * +8: n*byte: message data
2690
 
2690
 
2691
------------------ Subfunction 2 - send IPC message ------------------
2691
------------------ Subfunction 2 - send IPC message ------------------
2692
Is called by process-sender.
2692
Is called by process-sender.
2693
Parameters:
2693
Parameters:
2694
  * eax = 60 - function number
2694
  * eax = 60 - function number
2695
  * ebx = 2 - subfunction number
2695
  * ebx = 2 - subfunction number
2696
  * ecx = PID of receiver
2696
  * ecx = PID of receiver
2697
  * edx = pointer to the message data
2697
  * edx = pointer to the message data
2698
  * esi = message length (in bytes)
2698
  * esi = message length (in bytes)
2699
Returned value:
2699
Returned value:
2700
  * eax = 0 - success
2700
  * eax = 0 - success
2701
  * eax = 1 - the receiver has not defined buffer for IPC messages
2701
  * eax = 1 - the receiver has not defined buffer for IPC messages
2702
    (can be, still have no time,
2702
    (can be, still have no time,
2703
    and can be, this is not right process)
2703
    and can be, this is not right process)
2704
  * eax = 2 - the receiver has blocked IPC-buffer; try to wait a bit
2704
  * eax = 2 - the receiver has blocked IPC-buffer; try to wait a bit
2705
  * eax = 3 - overflow of IPC-buffer of the receiver
2705
  * eax = 3 - overflow of IPC-buffer of the receiver
2706
  * eax = 4 - process/thread with such PID does not exist
2706
  * eax = 4 - process/thread with such PID does not exist
2707
Remarks:
2707
Remarks:
2708
  * Immediately after writing of IPC-message to the buffer the system
2708
  * Immediately after writing of IPC-message to the buffer the system
2709
    sends to the receiver the event with code 7 (see event codes).
2709
    sends to the receiver the event with code 7 (see event codes).
2710
 
2710
 
2711
---------------------- Constants for registers: ----------------------
2711
---------------------- Constants for registers: ----------------------
2712
  eax - SF_IPC (60)
2712
  eax - SF_IPC (60)
2713
  ebx - SSF_SET_AREA (1), SSF_SEND_MESSAGE (2)
2713
  ebx - SSF_SET_AREA (1), SSF_SEND_MESSAGE (2)
2714
======================================================================
2714
======================================================================
2715
==== Function 61 - get parameters for the direct graphics access. ====
2715
==== Function 61 - get parameters for the direct graphics access. ====
2716
======================================================================
2716
======================================================================
2717
The data of the graphics screen (the memory area which displays
2717
The data of the graphics screen (the memory area which displays
2718
screen contents) are accessible to a program directly, without
2718
screen contents) are accessible to a program directly, without
2719
any system calls, through the selector gs:
2719
any system calls, through the selector gs:
2720
        mov     eax, [gs:0]
2720
        mov     eax, [gs:0]
2721
places in eax the first dword of the buffer, which contains
2721
places in eax the first dword of the buffer, which contains
2722
information on color of the left upper point (and, possibly, colors
2722
information on color of the left upper point (and, possibly, colors
2723
of several following).
2723
of several following).
2724
        mov     [gs:0], eax
2724
        mov     [gs:0], eax
2725
by work in VESA modes with LFB sets color of the left upper point
2725
by work in VESA modes with LFB sets color of the left upper point
2726
(and, possibly, colors of several following).
2726
(and, possibly, colors of several following).
2727
To interpret the data of graphics screen program needs to know
2727
To interpret the data of graphics screen program needs to know
2728
some parameters, returning by this function.
2728
some parameters, returning by this function.
2729
Remarks:
2729
Remarks:
2730
  * Graphics parameters changes very seldom at work,
2730
  * Graphics parameters changes very seldom at work.
2731
    namely, only in cases, when user works with the application VRR.
-
 
2732
  * At videomode change the system redraws all windows (event
2731
  * At videomode change the system redraws all windows (event
2733
    with code 1) and redraws the background (event 5).
2732
    with code 1) and redraws the background (event 5).
2734
    Same events occur in other cases too, which meet much more often,
2733
    Same events occur in other cases too, which meet much more often,
2735
    than videomode change.
2734
    than videomode change.
2736
  * By operation in videomodes with LFB the selector gs points to
2735
  * By operation in videomodes with LFB the selector gs points to
2737
    LFB itself, so reading/writing on gs result directly in
2736
    LFB itself, so reading/writing on gs result directly in
2738
    change of screen contents. By operation in videomodes without
2737
    change of screen contents. By operation in videomodes without
2739
    LFB gs points to some data area in the kernel, and all functions
2738
    LFB gs points to some data area in the kernel, and all functions
2740
    of screen output fulfil honesty double operation on writing
2739
    of screen output fulfil honesty double operation on writing
2741
    directly to the screen and writing to this buffer. In result
2740
    directly to the screen and writing to this buffer. In result
2742
    at reading contents of this buffer the results correspond to
2741
    at reading contents of this buffer the results correspond to
2743
    screen contents (with, generally speaking, large color
2742
    screen contents (with, generally speaking, large color
2744
    resolution), and writing is ignored.
2743
    resolution), and writing is ignored.
2745
    One exception is the mode 320*200, for which main loop of the
2744
    One exception is the mode 320*200, for which main loop of the
2746
    system thread updates the screen according to mouse movements.
2745
    system thread updates the screen according to mouse movements.
2747
 
2746
 
2748
------------------------- Screen resolution --------------------------
2747
------------------------- Screen resolution --------------------------
2749
Parameters:
2748
Parameters:
2750
  * eax = 61 - function number
2749
  * eax = 61 - function number
2751
  * ebx = 1 - subfunction number
2750
  * ebx = 1 - subfunction number
2752
Returned value:
2751
Returned value:
2753
  * eax = [resolution on x axis]*65536 + [resolution on y axis]
2752
  * eax = [resolution on x axis]*65536 + [resolution on y axis]
2754
Remarks:
2753
Remarks:
2755
  * One can use function 14 paying attention that
2754
  * One can use function 14 paying attention that
2756
    it returns sizes on 1 pixel less. It is fully equivalent way.
2755
    it returns sizes on 1 pixel less. It is fully equivalent way.
2757
 
2756
 
2758
---------------------- Number of bits per pixel ----------------------
2757
---------------------- Number of bits per pixel ----------------------
2759
Parameters:
2758
Parameters:
2760
  * eax = 61 - function number
2759
  * eax = 61 - function number
2761
  * ebx = 2 - subfunction number
2760
  * ebx = 2 - subfunction number
2762
Returned value:
2761
Returned value:
2763
  * eax = number of bits per pixel (24 or 32)
2762
  * eax = number of bits per pixel (24 or 32)
2764
 
2763
 
2765
-------------------- Number of bytes per scanline --------------------
2764
-------------------- Number of bytes per scanline --------------------
2766
Parameters:
2765
Parameters:
2767
  * eax = 61 - function number
2766
  * eax = 61 - function number
2768
  * ebx = 3 - subfunction number
2767
  * ebx = 3 - subfunction number
2769
Returned value:
2768
Returned value:
2770
  * eax = number of bytes occupied by one scanline
2769
  * eax = number of bytes occupied by one scanline
2771
    (horizontal line on the screen)
2770
    (horizontal line on the screen)
2772
 
2771
 
2773
---------------------- Constants for registers: ----------------------
2772
---------------------- Constants for registers: ----------------------
2774
  eax - SF_GET_GRAPHICAL_PARAMS (61)
2773
  eax - SF_GET_GRAPHICAL_PARAMS (61)
2775
  ebx - SSF_SCREEN_SIZE (1), SSF_BITS_PER_PIXEL (2),
2774
  ebx - SSF_SCREEN_SIZE (1), SSF_BITS_PER_PIXEL (2),
2776
    SSF_BYTES_PER_LINE (3)
2775
    SSF_BYTES_PER_LINE (3)
2777
======================================================================
2776
======================================================================
2778
===== Function 62, subfunction 0 - get version of PCI-interface. =====
2777
===== Function 62, subfunction 0 - get version of PCI-interface. =====
2779
======================================================================
2778
======================================================================
2780
Parameters:
2779
Parameters:
2781
  * eax = 62 - function number
2780
  * eax = 62 - function number
2782
  * bl = 0 - subfunction number
2781
  * bl = 0 - subfunction number
2783
Returned value:
2782
Returned value:
2784
  * eax = -1 - PCI access is disabled; otherwise
2783
  * eax = -1 - PCI access is disabled; otherwise
2785
  * ah.al = version of PCI-interface (ah=version, al=subversion)
2784
  * ah.al = version of PCI-interface (ah=version, al=subversion)
2786
  * high word of eax is zeroed
2785
  * high word of eax is zeroed
2787
Remarks:
2786
Remarks:
2788
  * Previously low-level access to PCI for applications must be
2787
  * Previously low-level access to PCI for applications must be
2789
    enabled by subfunction 12 of function 21.
2788
    enabled by subfunction 12 of function 21.
2790
  * If PCI BIOS is not supported, the value of ax is undefined.
2789
  * If PCI BIOS is not supported, the value of ax is undefined.
2791
 
2790
 
2792
---------------------- Constants for registers: ----------------------
2791
---------------------- Constants for registers: ----------------------
2793
  eax - SF_PCI (62)
2792
  eax - SF_PCI (62)
2794
  ebx - SSF_GET_VERSION (0)
2793
  ebx - SSF_GET_VERSION (0)
2795
======================================================================
2794
======================================================================
2796
==== Function 62, subfunction 1 - get number of the last PCI-bus. ====
2795
==== Function 62, subfunction 1 - get number of the last PCI-bus. ====
2797
======================================================================
2796
======================================================================
2798
Parameters:
2797
Parameters:
2799
  * eax = 62 - function number
2798
  * eax = 62 - function number
2800
  * bl = 1 - subfunction number
2799
  * bl = 1 - subfunction number
2801
Returned value:
2800
Returned value:
2802
  * eax = -1 - access to PCI is disabled; otherwise
2801
  * eax = -1 - access to PCI is disabled; otherwise
2803
  * al = number of the last PCI-bus; other bytes of eax are destroyed
2802
  * al = number of the last PCI-bus; other bytes of eax are destroyed
2804
Remarks:
2803
Remarks:
2805
  * Previously low-level access to PCI for applications must be
2804
  * Previously low-level access to PCI for applications must be
2806
    enabled by subfunction 12 of function 21.
2805
    enabled by subfunction 12 of function 21.
2807
  * If PCI BIOS is not supported, the value of ax is undefined.
2806
  * If PCI BIOS is not supported, the value of ax is undefined.
2808
 
2807
 
2809
---------------------- Constants for registers: ----------------------
2808
---------------------- Constants for registers: ----------------------
2810
  eax - SF_PCI (62)
2809
  eax - SF_PCI (62)
2811
  ebx - SSF_GET_LAST_BUS (1)
2810
  ebx - SSF_GET_LAST_BUS (1)
2812
======================================================================
2811
======================================================================
2813
===================== Function 62, subfunction 2 =====================
2812
===================== Function 62, subfunction 2 =====================
2814
===== Get mechanism of addressing to the PCI configuration space. ====
2813
===== Get mechanism of addressing to the PCI configuration space. ====
2815
======================================================================
2814
======================================================================
2816
Parameters:
2815
Parameters:
2817
  * eax = 62 - function number
2816
  * eax = 62 - function number
2818
  * bl = 2 - subfunction number
2817
  * bl = 2 - subfunction number
2819
Returned value:
2818
Returned value:
2820
  * eax = -1 - access to PCI is disabled; otherwise
2819
  * eax = -1 - access to PCI is disabled; otherwise
2821
  * al = mechanism (1 or 2); other bytes of eax are destroyed
2820
  * al = mechanism (1 or 2); other bytes of eax are destroyed
2822
Remarks:
2821
Remarks:
2823
  * Previously low-level access to PCI for applications must be
2822
  * Previously low-level access to PCI for applications must be
2824
    enabled by subfunction 12 of function 21.
2823
    enabled by subfunction 12 of function 21.
2825
  * Addressing mechanism is selected depending on
2824
  * Addressing mechanism is selected depending on
2826
    equipment characteristics.
2825
    equipment characteristics.
2827
  * Subfunctions of read and write work automatically
2826
  * Subfunctions of read and write work automatically
2828
    with the selected mechanism.
2827
    with the selected mechanism.
2829
 
2828
 
2830
---------------------- Constants for registers: ----------------------
2829
---------------------- Constants for registers: ----------------------
2831
  eax - SF_PCI (62)
2830
  eax - SF_PCI (62)
2832
  ebx - SSF_GET_ADRR_MODE (2)
2831
  ebx - SSF_GET_ADRR_MODE (2)
2833
======================================================================
2832
======================================================================
2834
======== Function 62, subfunctions 4,5,6 - read PCI-register. ========
2833
======== Function 62, subfunctions 4,5,6 - read PCI-register. ========
2835
======================================================================
2834
======================================================================
2836
Parameters:
2835
Parameters:
2837
  * eax = 62 - function number
2836
  * eax = 62 - function number
2838
  * bl = 4 - read byte
2837
  * bl = 4 - read byte
2839
  * bl = 5 - read word
2838
  * bl = 5 - read word
2840
  * bl = 6 - read dword
2839
  * bl = 6 - read dword
2841
  * bh = number of PCI-bus
2840
  * bh = number of PCI-bus
2842
  * ch = dddddfff, where ddddd = number of the device on the bus,
2841
  * ch = dddddfff, where ddddd = number of the device on the bus,
2843
    fff = function number of device
2842
    fff = function number of device
2844
  * cl = number of register (must be even for bl=5,
2843
  * cl = number of register (must be even for bl=5,
2845
    divisible by 4 for bl=6)
2844
    divisible by 4 for bl=6)
2846
Returned value:
2845
Returned value:
2847
  * eax = -1 - error (access to PCI is disabled or parameters
2846
  * eax = -1 - error (access to PCI is disabled or parameters
2848
    are not supported); otherwise
2847
    are not supported); otherwise
2849
  * al/ax/eax (depending on requested size) contains the data;
2848
  * al/ax/eax (depending on requested size) contains the data;
2850
    the other part of register eax is destroyed
2849
    the other part of register eax is destroyed
2851
Remarks:
2850
Remarks:
2852
  * Previously low-level access to PCI for applications must be
2851
  * Previously low-level access to PCI for applications must be
2853
    enabled by subfunction 12 of function 21.
2852
    enabled by subfunction 12 of function 21.
2854
  * Access mechanism 2 supports only 16 devices on a bus and ignores
2853
  * Access mechanism 2 supports only 16 devices on a bus and ignores
2855
    function number. To get access mechanism use subfunction 2.
2854
    function number. To get access mechanism use subfunction 2.
2856
  * Some registers are standard and exist for all devices, some are
2855
  * Some registers are standard and exist for all devices, some are
2857
    defined by the concrete device. The list of registers of the
2856
    defined by the concrete device. The list of registers of the
2858
    first type can be found e.g. in famous
2857
    first type can be found e.g. in famous
2859
    Interrupt List by Ralf Brown
2858
    Interrupt List by Ralf Brown
2860
    (http://www.pobox.com/~ralf/files.html,
2859
    (http://www.pobox.com/~ralf/files.html,
2861
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/);
2860
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/);
2862
    registers of the second type must be listed
2861
    registers of the second type must be listed
2863
    in the device documentation.
2862
    in the device documentation.
2864
 
2863
 
2865
---------------------- Constants for registers: ----------------------
2864
---------------------- Constants for registers: ----------------------
2866
  eax - SF_PCI (62)
2865
  eax - SF_PCI (62)
2867
  ebx - SSF_READ_BYTE (4), SSF_READ_WORD (5), SSF_READ_DWORD (6)
2866
  ebx - SSF_READ_BYTE (4), SSF_READ_WORD (5), SSF_READ_DWORD (6)
2868
======================================================================
2867
======================================================================
2869
====== Function 62, subfunctions 8,9,10 - write to PCI-register. =====
2868
====== Function 62, subfunctions 8,9,10 - write to PCI-register. =====
2870
======================================================================
2869
======================================================================
2871
Parameters:
2870
Parameters:
2872
  * eax = 62 - function number
2871
  * eax = 62 - function number
2873
  * bl = 8 - write byte
2872
  * bl = 8 - write byte
2874
  * bl = 9 - write word
2873
  * bl = 9 - write word
2875
  * bl = 10 - write dword
2874
  * bl = 10 - write dword
2876
  * bh = number of PCI-bus
2875
  * bh = number of PCI-bus
2877
  * ch = dddddfff, where ddddd = number of the device on the bus,
2876
  * ch = dddddfff, where ddddd = number of the device on the bus,
2878
    fff = function number of device
2877
    fff = function number of device
2879
  * cl = number of register (must be even for bl=9,
2878
  * cl = number of register (must be even for bl=9,
2880
    divisible by 4 for bl=10)
2879
    divisible by 4 for bl=10)
2881
  * dl/dx/edx (depending on requested size) contatins
2880
  * dl/dx/edx (depending on requested size) contatins
2882
    the data to write
2881
    the data to write
2883
Returned value:
2882
Returned value:
2884
  * eax = -1 - error (access to PCI is disabled or parameters
2883
  * eax = -1 - error (access to PCI is disabled or parameters
2885
    are not supported)
2884
    are not supported)
2886
  * eax = 0 - success
2885
  * eax = 0 - success
2887
Remarks:
2886
Remarks:
2888
  * Previously low-level access to PCI for applications must be
2887
  * Previously low-level access to PCI for applications must be
2889
    enabled by subfunction 12 of function 21.
2888
    enabled by subfunction 12 of function 21.
2890
  * Access mechanism 2 supports only 16 devices on a bus and ignores
2889
  * Access mechanism 2 supports only 16 devices on a bus and ignores
2891
    function number. To get access mechanism use subfunction 2.
2890
    function number. To get access mechanism use subfunction 2.
2892
  * Some registers are standard and exist for all devices, some are
2891
  * Some registers are standard and exist for all devices, some are
2893
    defined by the concrete device. The list of registers of the
2892
    defined by the concrete device. The list of registers of the
2894
    first type can be found e.g. in famous Interrupt List by
2893
    first type can be found e.g. in famous Interrupt List by
2895
    Ralf Brown; registers of the second type must be listed
2894
    Ralf Brown; registers of the second type must be listed
2896
    in the device documentation.
2895
    in the device documentation.
2897
 
2896
 
2898
---------------------- Constants for registers: ----------------------
2897
---------------------- Constants for registers: ----------------------
2899
  eax - SF_PCI (62)
2898
  eax - SF_PCI (62)
2900
  ebx - SSF_WRITE_BYTE (8), SSF_WRITE_WORD (9), SSF_WRITE_DWORD (10)
2899
  ebx - SSF_WRITE_BYTE (8), SSF_WRITE_WORD (9), SSF_WRITE_DWORD (10)
2901
======================================================================
2900
======================================================================
2902
============== Function 63 - work with the debug board. ==============
2901
============== Function 63 - work with the debug board. ==============
2903
======================================================================
2902
======================================================================
2904
The debug board is the global system buffer (with the size
2903
The debug board is the global system buffer (with the size
2905
1024 bytes), to which any program can write (generally speaking,
2904
1024 bytes), to which any program can write (generally speaking,
2906
arbitrary) data and from which other program can read these data.
2905
arbitrary) data and from which other program can read these data.
2907
By the agreement written data are text strings interpreted as
2906
By the agreement written data are text strings interpreted as
2908
debug messages on a course of program execution. The kernel in
2907
debug messages on a course of program execution. The kernel in
2909
some situations also writes to the debug board information on
2908
some situations also writes to the debug board information on
2910
execution of some functions; by the agreement kernel messages
2909
execution of some functions; by the agreement kernel messages
2911
begins from the prefix "K : ".
2910
begins from the prefix "K : ".
2912
For view of the debug board the application 'board' was created,
2911
For view of the debug board the application 'board' was created,
2913
which reads data from the buffer and displays them in its window.
2912
which reads data from the buffer and displays them in its window.
2914
'board' interpretes the sequence of codes 13,10 as newline.
2913
'board' interpretes the sequence of codes 13,10 as newline.
2915
A character with null code in an end of line is not necessary,
2914
A character with null code in an end of line is not necessary,
2916
but also does not prevent.
2915
but also does not prevent.
2917
Because debugger has been written, the value of the debug board
2916
Because debugger has been written, the value of the debug board
2918
has decreased, as debugger allows to inspect completely a course of
2917
has decreased, as debugger allows to inspect completely a course of
2919
program execution without any efforts from the direction of program
2918
program execution without any efforts from the direction of program
2920
itself. Nevertheless in some cases the debug board is still useful.
2919
itself. Nevertheless in some cases the debug board is still useful.
2921
 
2920
 
2922
----------------------------- Write byte -----------------------------
2921
----------------------------- Write byte -----------------------------
2923
Parameters:
2922
Parameters:
2924
  * eax = 63 - function number
2923
  * eax = 63 - function number
2925
  * ebx = 1 - subfunction number
2924
  * ebx = 1 - subfunction number
2926
  * cl = data byte
2925
  * cl = data byte
2927
Returned value:
2926
Returned value:
2928
  * function does not return value
2927
  * function does not return value
2929
Remarks:
2928
Remarks:
2930
  * Byte is written to the buffer. Buffer size is 512 bytes.
2929
  * Byte is written to the buffer. Buffer size is 512 bytes.
2931
    At buffer overflow all obtained data are lost.
2930
    At buffer overflow all obtained data are lost.
2932
  * For output to the debug board of more complicated objects
2931
  * For output to the debug board of more complicated objects
2933
    (strings, numbers) it is enough to call this function in cycle.
2932
    (strings, numbers) it is enough to call this function in cycle.
2934
    It is possible not to write the appropriate code manually and use
2933
    It is possible not to write the appropriate code manually and use
2935
    file 'debug.inc', which is included into the distributive.
2934
    file 'debug.inc', which is included into the distributive.
2936
 
2935
 
2937
----------------------------- Read byte ------------------------------
2936
----------------------------- Read byte ------------------------------
2938
Takes away byte from the buffer.
2937
Takes away byte from the buffer.
2939
Parameters:
2938
Parameters:
2940
  * eax = 63 - function number
2939
  * eax = 63 - function number
2941
  * ebx = 2 - subfunction number
2940
  * ebx = 2 - subfunction number
2942
Returned value:
2941
Returned value:
2943
  * eax = ebx = 0 - the buffer is empty
2942
  * eax = ebx = 0 - the buffer is empty
2944
  * eax = byte, ebx = 1 - byte was successfully read
2943
  * eax = byte, ebx = 1 - byte was successfully read
2945
 
2944
 
2946
---------------------- Constants for registers: ----------------------
2945
---------------------- Constants for registers: ----------------------
2947
  eax - SF_BOARD (63)
2946
  eax - SF_BOARD (63)
2948
  ebx - SSF_DEBUG_WRITE (1), SSF_DEBUG_READ (2)
2947
  ebx - SSF_DEBUG_WRITE (1), SSF_DEBUG_READ (2)
2949
======================================================================
2948
======================================================================
2950
============== Function 64 - resize application memory. ==============
2949
============== Function 64 - resize application memory. ==============
2951
======================================================================
2950
======================================================================
2952
Parameters:
2951
Parameters:
2953
  * eax = 64 - function number
2952
  * eax = 64 - function number
2954
  * ebx = 1 - unique subfunction
2953
  * ebx = 1 - unique subfunction
2955
  * ecx = new memory size
2954
  * ecx = new memory size
2956
Returned value:
2955
Returned value:
2957
  * eax = 0 - success
2956
  * eax = 0 - success
2958
  * eax = 1 - not enough memory
2957
  * eax = 1 - not enough memory
2959
Remarks:
2958
Remarks:
2960
  * There is another way to dynamically allocate/free memory -
2959
  * There is another way to dynamically allocate/free memory -
2961
    subfunctions 12, 13 and 20 of function 68, but after creation
2960
    subfunctions 12, 13 and 20 of function 68, but after creation
2962
    of the process heap 64 function call will be ignored.
2961
    of the process heap 64 function call will be ignored.
2963
  * The function cannot be used together with 68.11, 68.12, 68.13.
2962
  * The function cannot be used together with 68.11, 68.12, 68.13.
2964
    The function call will be ignored after creation of process heap
2963
    The function call will be ignored after creation of process heap
2965
    with function 68.11.
2964
    with function 68.11.
2966
        
2965
        
2967
---------------------- Constants for registers: ----------------------
2966
---------------------- Constants for registers: ----------------------
2968
  eax - SF_MEMORY_RESIZE (64)
2967
  eax - SF_MEMORY_RESIZE (64)
2969
======================================================================
2968
======================================================================
2970
======== Function 65 - draw image with palette in the window. ========
2969
======== Function 65 - draw image with palette in the window. ========
2971
======================================================================
2970
======================================================================
2972
Parameters:
2971
Parameters:
2973
  * eax = 65 - function number
2972
  * eax = 65 - function number
2974
  * ebx = pointer to the image
2973
  * ebx = pointer to the image
2975
  * ecx = [size on axis x]*65536 + [size on axis y]
2974
  * ecx = [size on axis x]*65536 + [size on axis y]
2976
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2975
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2977
  * esi = number of bits per pixel, must be 1,2,4,8,9,15,16,24 or 32;
2976
  * esi = number of bits per pixel, must be 1,2,4,8,9,15,16,24 or 32;
2978
  * edi = pointer to palette (2 to the power esi colors 0x00RRGGBB);
2977
  * edi = pointer to palette (2 to the power esi colors 0x00RRGGBB);
2979
          ignored when esi > 8
2978
          ignored when esi > 8
2980
  * ebp = offset of next row data relative to previous row data
2979
  * ebp = offset of next row data relative to previous row data
2981
Returned value:
2980
Returned value:
2982
  * function does not return value
2981
  * function does not return value
2983
Remarks:
2982
Remarks:
2984
  * Coordinates of the image are coordinates of the upper left corner
2983
  * Coordinates of the image are coordinates of the upper left corner
2985
    of the image relative to the window.
2984
    of the image relative to the window.
2986
  * Format of image with 1 bit per pixel: each byte of image
2985
  * Format of image with 1 bit per pixel: each byte of image
2987
    (possibly excluding last bytes in rows), contains information on
2986
    (possibly excluding last bytes in rows), contains information on
2988
    the color of 8 pixels, MSB corresponds to first pixel.
2987
    the color of 8 pixels, MSB corresponds to first pixel.
2989
  * Format of image with 2 bits per pixel: each byte of image
2988
  * Format of image with 2 bits per pixel: each byte of image
2990
    (possibly excluding last bytes in rows), contains information on
2989
    (possibly excluding last bytes in rows), contains information on
2991
    the color of 4 pixels, two MSBs correspond to first pixel.
2990
    the color of 4 pixels, two MSBs correspond to first pixel.
2992
  * Format of image with 4 bits per pixel: each byte of image
2991
  * Format of image with 4 bits per pixel: each byte of image
2993
    excluding last bytes in rows (if width is odd) contains
2992
    excluding last bytes in rows (if width is odd) contains
2994
    information on the color of 2 pixels, high-order tetrad
2993
    information on the color of 2 pixels, high-order tetrad
2995
    corresponds to first pixel.
2994
    corresponds to first pixel.
2996
  * Format of image with 8 bits per pixel: each byte of image is
2995
  * Format of image with 8 bits per pixel: each byte of image is
2997
    index in the palette.
2996
    index in the palette.
2998
  * Format of image with 9 bits per pixel: array of one byte values;
2997
  * Format of image with 9 bits per pixel: array of one byte values;
2999
    each byte (8 bit) represents the intensity of gray for one pixel;
2998
    each byte (8 bit) represents the intensity of gray for one pixel;
3000
    this format is equal to 8bpp without palette.
2999
    this format is equal to 8bpp without palette.
3001
  * Format of image with 15 bits per pixel: the color of each pixel
3000
  * Format of image with 15 bits per pixel: the color of each pixel
3002
    is coded as (bit representation) 0RRRRRGGGGGBBBBB - 5 bits per
3001
    is coded as (bit representation) 0RRRRRGGGGGBBBBB - 5 bits per
3003
    each color.
3002
    each color.
3004
  * Format of image with 16 bits per pixel: the color of each pixel
3003
  * Format of image with 16 bits per pixel: the color of each pixel
3005
    is coded as RRRRRGGGGGGBBBBB (5+6+5).
3004
    is coded as RRRRRGGGGGGBBBBB (5+6+5).
3006
  * Format of image with 24 bits per pixel: the color of each pixel
3005
  * Format of image with 24 bits per pixel: the color of each pixel
3007
    is coded as 3 bytes - sequentially blue, green, red components.
3006
    is coded as 3 bytes - sequentially blue, green, red components.
3008
  * Format of image with 32 bits per pixel: similar to 24, but
3007
  * Format of image with 32 bits per pixel: similar to 24, but
3009
    one additional ignored byte is present. It's format is BGRX,
3008
    one additional ignored byte is present. It's format is BGRX,
3010
    where X is the ignored byte.
3009
    where X is the ignored byte.
3011
  * The call to function 7 is equivalent to call to this function
3010
  * The call to function 7 is equivalent to call to this function
3012
    with esi=24, ebp=0.
3011
    with esi=24, ebp=0.
3013
 
3012
 
3014
---------------------- Constants for registers: ----------------------
3013
---------------------- Constants for registers: ----------------------
3015
  eax - SF_PUT_IMAGE_EXT (65)
3014
  eax - SF_PUT_IMAGE_EXT (65)
3016
======================================================================
3015
======================================================================
3017
================== Function 66 - work with keyboard. =================
3016
================== Function 66 - work with keyboard. =================
3018
======================================================================
3017
======================================================================
3019
The input mode influences results of reading keys by function 2.
3018
The input mode influences results of reading keys by function 2.
3020
When a program loads, ASCII input mode is set for it.
3019
When a program loads, ASCII input mode is set for it.
3021
 
3020
 
3022
-------------- Subfunction 1 - set keyboard input mode. --------------
3021
-------------- Subfunction 1 - set keyboard input mode. --------------
3023
Parameters:
3022
Parameters:
3024
  * eax = 66 - function number
3023
  * eax = 66 - function number
3025
  * ebx = 1 - subfunction number
3024
  * ebx = 1 - subfunction number
3026
  * ecx = mode:
3025
  * ecx = mode:
3027
    * 0 = normal (ASCII-characters)
3026
    * 0 = normal (ASCII-characters)
3028
    * 1 = scancodes
3027
    * 1 = scancodes
3029
Returned value:
3028
Returned value:
3030
  * function does not return value
3029
  * function does not return value
3031
 
3030
 
3032
-------------- Subfunction 2 - get keyboard input mode. --------------
3031
-------------- Subfunction 2 - get keyboard input mode. --------------
3033
Parameters:
3032
Parameters:
3034
  * eax = 66 - function number
3033
  * eax = 66 - function number
3035
  * ebx = 2 - subfunction number
3034
  * ebx = 2 - subfunction number
3036
Returned value:
3035
Returned value:
3037
  * eax = current mode
3036
  * eax = current mode
3038
 
3037
 
3039
------------ Subfunction 3 - get status of control keys. -------------
3038
------------ Subfunction 3 - get status of control keys. -------------
3040
Parameters:
3039
Parameters:
3041
  * eax = 66 - function number
3040
  * eax = 66 - function number
3042
  * ebx = 3 - subfunction number
3041
  * ebx = 3 - subfunction number
3043
Returned value:
3042
Returned value:
3044
  * eax = bit mask:
3043
  * eax = bit mask:
3045
  * bit 0  (mask 1): left Shift is pressed
3044
  * bit 0  (mask 1): left Shift is pressed
3046
  * bit 1  (mask 2): right Shift is pressed
3045
  * bit 1  (mask 2): right Shift is pressed
3047
  * bit 2  (mask 4): left Ctrl is pressed
3046
  * bit 2  (mask 4): left Ctrl is pressed
3048
  * bit 3  (mask 8): right Ctrl is pressed
3047
  * bit 3  (mask 8): right Ctrl is pressed
3049
  * bit 4  (mask 0x10): left Alt is pressed
3048
  * bit 4  (mask 0x10): left Alt is pressed
3050
  * bit 5  (mask 0x20): right Alt is pressed
3049
  * bit 5  (mask 0x20): right Alt is pressed
3051
  * bit 6  (mask 0x40): CapsLock is on
3050
  * bit 6  (mask 0x40): CapsLock is on
3052
  * bit 7  (mask 0x80): NumLock is on
3051
  * bit 7  (mask 0x80): NumLock is on
3053
  * bit 8  (mask 0x100): ScrollLock is on
3052
  * bit 8  (mask 0x100): ScrollLock is on
3054
  * bit 9  (mask 0x200): left Win is pressed
3053
  * bit 9  (mask 0x200): left Win is pressed
3055
  * bit 10 (mask 0x400): right Win is pressed
3054
  * bit 10 (mask 0x400): right Win is pressed
3056
  * other bits are cleared
3055
  * other bits are cleared
3057
 
3056
 
3058
-------------- Subfunction 4 - set system-wide hotkey. ---------------
3057
-------------- Subfunction 4 - set system-wide hotkey. ---------------
3059
When hotkey is pressed, the system notifies only those applications,
3058
When hotkey is pressed, the system notifies only those applications,
3060
which have installed it; the active application (which receives
3059
which have installed it; the active application (which receives
3061
all normal input) does not receive such keys.
3060
all normal input) does not receive such keys.
3062
The notification consists in sending event with the code 2.
3061
The notification consists in sending event with the code 2.
3063
Reading hotkey is the same as reading normal key - by function 2.
3062
Reading hotkey is the same as reading normal key - by function 2.
3064
Parameters:
3063
Parameters:
3065
  * eax = 66 - function number
3064
  * eax = 66 - function number
3066
  * ebx = 4 - subfunction number
3065
  * ebx = 4 - subfunction number
3067
  * cl determines key scancode;
3066
  * cl determines key scancode;
3068
    use cl=0 to give combinations such as Ctrl+Shift
3067
    use cl=0 to give combinations such as Ctrl+Shift
3069
  * edx = 0xXYZ determines possible states of control keys:
3068
  * edx = 0xXYZ determines possible states of control keys:
3070
    * Z (low 4 bits) determines state of LShift and RShift:
3069
    * Z (low 4 bits) determines state of LShift and RShift:
3071
      * 0 = no key must be pressed;
3070
      * 0 = no key must be pressed;
3072
      * 1 = exactly one key must be pressed;
3071
      * 1 = exactly one key must be pressed;
3073
      * 2 = both keys must be pressed;
3072
      * 2 = both keys must be pressed;
3074
      * 3 = must be pressed LShift, but not RShift;
3073
      * 3 = must be pressed LShift, but not RShift;
3075
      * 4 = must be pressed RShift, but not LShift
3074
      * 4 = must be pressed RShift, but not LShift
3076
    * Y - similar for LCtrl and RCtrl;
3075
    * Y - similar for LCtrl and RCtrl;
3077
    * X - similar for LAlt and RAlt
3076
    * X - similar for LAlt and RAlt
3078
Returned value:
3077
Returned value:
3079
  * eax=0 - success
3078
  * eax=0 - success
3080
  * eax=1 - too mant hotkeys (maximum 256 are allowed)
3079
  * eax=1 - too mant hotkeys (maximum 256 are allowed)
3081
Remarks:
3080
Remarks:
3082
  * Hotkey can work either at pressing or at release. Release
3081
  * Hotkey can work either at pressing or at release. Release
3083
    scancode of a key is more on 128 than pressing scancode
3082
    scancode of a key is more on 128 than pressing scancode
3084
    (i.e. high bit is set).
3083
    (i.e. high bit is set).
3085
  * Several applications can set the same combination;
3084
  * Several applications can set the same combination;
3086
    all such applications will be informed on pressing
3085
    all such applications will be informed on pressing
3087
    such combination.
3086
    such combination.
3088
 
3087
 
3089
-------------- Subfunction 5 - delete installed hotkey. --------------
3088
-------------- Subfunction 5 - delete installed hotkey. --------------
3090
Parameters:
3089
Parameters:
3091
  * eax = 66 - function number
3090
  * eax = 66 - function number
3092
  * ebx = 5 - subfunction number
3091
  * ebx = 5 - subfunction number
3093
  * cl = scancode of key and edx = 0xXYZ the same as in subfunction 4
3092
  * cl = scancode of key and edx = 0xXYZ the same as in subfunction 4
3094
Returned value:
3093
Returned value:
3095
  * eax = 0 - success
3094
  * eax = 0 - success
3096
  * eax = 1 - there is no such hotkey
3095
  * eax = 1 - there is no such hotkey
3097
Remarks:
3096
Remarks:
3098
  * When a process/thread terminates, all hotkey installed by it are
3097
  * When a process/thread terminates, all hotkey installed by it are
3099
    deleted.
3098
    deleted.
3100
  * The call to this subfunction does not affect other applications.
3099
  * The call to this subfunction does not affect other applications.
3101
    If other application has defined the same combination, it will
3100
    If other application has defined the same combination, it will
3102
    still receive notices.
3101
    still receive notices.
3103
 
3102
 
3104
--------------- Subfunction 6 - block the normal input. --------------
3103
--------------- Subfunction 6 - block the normal input. --------------
3105
Parameters:
3104
Parameters:
3106
  * eax = 66 - function number
3105
  * eax = 66 - function number
3107
  * ebx = 6 - subfunction number
3106
  * ebx = 6 - subfunction number
3108
Returned value:
3107
Returned value:
3109
  * function does not return value
3108
  * function does not return value
3110
Remarks:
3109
Remarks:
3111
  * Blocking the normal keyboard input for installed hotkeys
3110
  * Blocking the normal keyboard input for installed hotkeys
3112
  * To emulate a mouse via the keyboard, the application MOUSEMUL
3111
  * To emulate a mouse via the keyboard, the application MOUSEMUL
3113
 
3112
 
3114
------------ Subfunction 7 - unlock the normal input. ----------------
3113
------------ Subfunction 7 - unlock the normal input. ----------------
3115
Parameters:
3114
Parameters:
3116
  * eax = 66 - function number
3115
  * eax = 66 - function number
3117
  * ebx = 7 - subfunction number
3116
  * ebx = 7 - subfunction number
3118
Returned value:
3117
Returned value:
3119
  * function does not return value
3118
  * function does not return value
3120
Remarks:
3119
Remarks:
3121
  * Unlocking the results of the f. 66.6
3120
  * Unlocking the results of the f. 66.6
3122
  * To emulate a mouse via the keyboard, the application MOUSEMUL
3121
  * To emulate a mouse via the keyboard, the application MOUSEMUL
3123
 
3122
 
3124
---------------------- Constants for registers: ----------------------
3123
---------------------- Constants for registers: ----------------------
3125
  eax - SF_KEYBOARD (66)
3124
  eax - SF_KEYBOARD (66)
3126
  ebx - SSF_SET_INPUT_MODE (1), SSF_GET_INPUT_MODE (2),
3125
  ebx - SSF_SET_INPUT_MODE (1), SSF_GET_INPUT_MODE (2),
3127
    SSF_GET_CONTROL_KEYS (3), SSF_SET_SYS_HOTKEY (4),
3126
    SSF_GET_CONTROL_KEYS (3), SSF_SET_SYS_HOTKEY (4),
3128
    SSF_DEL_SYS_HOTKEY (5),  SSF_LOCK_INPUT (6), SSF_UNLOCK_INPUT (7)
3127
    SSF_DEL_SYS_HOTKEY (5),  SSF_LOCK_INPUT (6), SSF_UNLOCK_INPUT (7)
3129
======================================================================
3128
======================================================================
3130
========= Function 67 - change position/sizes of the window. =========
3129
========= Function 67 - change position/sizes of the window. =========
3131
======================================================================
3130
======================================================================
3132
Parameters:
3131
Parameters:
3133
  * eax = 67 - function number
3132
  * eax = 67 - function number
3134
  * ebx = new x-coordinate of the window
3133
  * ebx = new x-coordinate of the window
3135
  * ecx = new y-coordinate of the window
3134
  * ecx = new y-coordinate of the window
3136
  * edx = new x-size of the window
3135
  * edx = new x-size of the window
3137
  * esi = new y-size of the window
3136
  * esi = new y-size of the window
3138
Returned value:
3137
Returned value:
3139
  * function does not return value
3138
  * function does not return value
3140
Remarks:
3139
Remarks:
3141
  * The value -1 for a parameter means "do not change"; e.g. to move
3140
  * The value -1 for a parameter means "do not change"; e.g. to move
3142
    the window without resizing it is possible to specify edx=esi=-1.
3141
    the window without resizing it is possible to specify edx=esi=-1.
3143
  * Previously the window must be defined by function 0.
3142
  * Previously the window must be defined by function 0.
3144
    It sets initial coordinates and sizes of the window.
3143
    It sets initial coordinates and sizes of the window.
3145
  * Sizes of the window are understood in sense of function 0,
3144
  * Sizes of the window are understood in sense of function 0,
3146
    that is one pixel less than real sizes.
3145
    that is one pixel less than real sizes.
3147
  * The function call for maximized windows is simply ignored.
3146
  * The function call for maximized windows is simply ignored.
3148
  * For windows of appropriate styles position and/or sizes can be
3147
  * For windows of appropriate styles position and/or sizes can be
3149
    changed by user; current position and sizes can be obtained by
3148
    changed by user; current position and sizes can be obtained by
3150
    call to function 9.
3149
    call to function 9.
3151
  * The function sends to the window redraw event (with the code 1).
3150
  * The function sends to the window redraw event (with the code 1).
3152
 
3151
 
3153
---------------------- Constants for registers: ----------------------
3152
---------------------- Constants for registers: ----------------------
3154
  eax - SF_CHANGE_WINDOW (67)
3153
  eax - SF_CHANGE_WINDOW (67)
3155
======================================================================
3154
======================================================================
3156
====== Function 68, subfunction 0 - get the task switch counter. =====
3155
====== Function 68, subfunction 0 - get the task switch counter. =====
3157
======================================================================
3156
======================================================================
3158
Parameters:
3157
Parameters:
3159
  * eax = 68 - function number
3158
  * eax = 68 - function number
3160
  * ebx = 0 - subfunction number
3159
  * ebx = 0 - subfunction number
3161
Returned value:
3160
Returned value:
3162
  * eax = number of task switches from the system booting
3161
  * eax = number of task switches from the system booting
3163
    (modulo 2^32)
3162
    (modulo 2^32)
3164
 
3163
 
3165
---------------------- Constants for registers: ----------------------
3164
---------------------- Constants for registers: ----------------------
3166
  eax - SF_SYS_MISC (68)
3165
  eax - SF_SYS_MISC (68)
3167
  ebx - SSF_GET_TASK_SWITCH_COUNT (0)
3166
  ebx - SSF_GET_TASK_SWITCH_COUNT (0)
3168
======================================================================
3167
======================================================================
3169
======= Function 68, subfunction 1 - switch to the next thread. ======
3168
======= Function 68, subfunction 1 - switch to the next thread. ======
3170
======================================================================
3169
======================================================================
3171
The function completes the current time slice allocated to the
3170
The function completes the current time slice allocated to the
3172
thread and switches to the next. (Which thread in which process
3171
thread and switches to the next. (Which thread in which process
3173
will be next, is unpredictable). Later, when execution queue
3172
will be next, is unpredictable). Later, when execution queue
3174
will reach the current thread, execution will be continued.
3173
will reach the current thread, execution will be continued.
3175
Parameters:
3174
Parameters:
3176
  * eax = 68 - function number
3175
  * eax = 68 - function number
3177
  * ebx = 1 - subfunction number
3176
  * ebx = 1 - subfunction number
3178
Returned value:
3177
Returned value:
3179
  * function does not return value
3178
  * function does not return value
3180
 
3179
 
3181
---------------------- Constants for registers: ----------------------
3180
---------------------- Constants for registers: ----------------------
3182
  eax - SF_SYS_MISC (68)
3181
  eax - SF_SYS_MISC (68)
3183
  ebx - SSF_SWITCH_TASK (1)
3182
  ebx - SSF_SWITCH_TASK (1)
3184
======================================================================
3183
======================================================================
3185
============= Function 68, subfunction 2 - cache + rdpmc. ============
3184
============= Function 68, subfunction 2 - cache + rdpmc. ============
3186
======================================================================
3185
======================================================================
3187
Parameters:
3186
Parameters:
3188
  * eax = 68 - function number
3187
  * eax = 68 - function number
3189
  * ebx = 2 - subfunction number
3188
  * ebx = 2 - subfunction number
3190
  * ecx = required action:
3189
  * ecx = required action:
3191
    * ecx = 0 - enable instruction 'rdpmc'
3190
    * ecx = 0 - enable instruction 'rdpmc'
3192
      (ReaD Performance-Monitoring Counters) for applications
3191
      (ReaD Performance-Monitoring Counters) for applications
3193
    * ecx = 1 - find out whether cache is disabled/enabled
3192
    * ecx = 1 - find out whether cache is disabled/enabled
3194
    * ecx = 2 - enable cache
3193
    * ecx = 2 - enable cache
3195
    * ecx = 3 - disable cache
3194
    * ecx = 3 - disable cache
3196
Returned value:
3195
Returned value:
3197
  * for ecx=0:
3196
  * for ecx=0:
3198
    * eax = the value of cr4
3197
    * eax = the value of cr4
3199
  * for ecx=1:
3198
  * for ecx=1:
3200
    * eax = (cr0 and 0x60000000):
3199
    * eax = (cr0 and 0x60000000):
3201
    * eax = 0 - cache is on
3200
    * eax = 0 - cache is on
3202
    * eax <> 0 - cache is off
3201
    * eax <> 0 - cache is off
3203
  * for ecx=2 and ecx=3:
3202
  * for ecx=2 and ecx=3:
3204
    * function does not return value
3203
    * function does not return value
3205
 
3204
 
3206
---------------------- Constants for registers: ----------------------
3205
---------------------- Constants for registers: ----------------------
3207
  eax - SF_SYS_MISC (68)
3206
  eax - SF_SYS_MISC (68)
3208
  ebx - SSF_PERFORMANCE (2)
3207
  ebx - SSF_PERFORMANCE (2)
3209
  ecx - SSSF_ALLOW_RDPMC (0), SSSF_CACHE_STATUS (1),
3208
  ecx - SSSF_ALLOW_RDPMC (0), SSSF_CACHE_STATUS (1),
3210
    SSSF_CACHE_ON (2), SSSF_CACHE_OFF (3)
3209
    SSSF_CACHE_ON (2), SSSF_CACHE_OFF (3)
3211
======================================================================
3210
======================================================================
3212
=========== Function 68, subfunction 3 - read MSR-register. ==========
3211
=========== Function 68, subfunction 3 - read MSR-register. ==========
3213
======================================================================
3212
======================================================================
3214
MSR = Model Specific Register; the complete list of MSR-registers
3213
MSR = Model Specific Register; the complete list of MSR-registers
3215
of a processor is included to the documentation on it (for example,
3214
of a processor is included to the documentation on it (for example,
3216
IA-32 Intel Architecture Software Developer's Manual,
3215
IA-32 Intel Architecture Software Developer's Manual,
3217
Volume 3, Appendix B); each processor family has its own subset
3216
Volume 3, Appendix B); each processor family has its own subset
3218
of the MSR-registers.
3217
of the MSR-registers.
3219
Parameters:
3218
Parameters:
3220
  * eax = 68 - function number
3219
  * eax = 68 - function number
3221
  * ebx = 3 - subfunction number
3220
  * ebx = 3 - subfunction number
3222
  * ecx is ignored
3221
  * ecx is ignored
3223
  * edx = MSR address
3222
  * edx = MSR address
3224
Returned value:
3223
Returned value:
3225
  * ebx:eax = high:low dword of the result
3224
  * ebx:eax = high:low dword of the result
3226
Remarks:
3225
Remarks:
3227
  * If ecx contains nonexistent or not implemented for this processor
3226
  * If ecx contains nonexistent or not implemented for this processor
3228
    MSR, processor will generate an exception in the kernel, which
3227
    MSR, processor will generate an exception in the kernel, which
3229
    will kill the thread.
3228
    will kill the thread.
3230
  * Previously it is necessary to check, whether MSRs are supported
3229
  * Previously it is necessary to check, whether MSRs are supported
3231
    as a whole, with the instruction 'cpuid'. Otherwise processor
3230
    as a whole, with the instruction 'cpuid'. Otherwise processor
3232
    will generate other exception in the kernel, which will anyway
3231
    will generate other exception in the kernel, which will anyway
3233
    kill the thread.
3232
    kill the thread.
3234
 
3233
 
3235
---------------------- Constants for registers: ----------------------
3234
---------------------- Constants for registers: ----------------------
3236
  eax - SF_SYS_MISC (68)
3235
  eax - SF_SYS_MISC (68)
3237
  ebx - SSF_READ_MSR (3)
3236
  ebx - SSF_READ_MSR (3)
3238
======================================================================
3237
======================================================================
3239
========= Function 68, subfunction 4 - write to MSR-register. ========
3238
========= Function 68, subfunction 4 - write to MSR-register. ========
3240
======================================================================
3239
======================================================================
3241
MSR = Model Specific Register; the complete list of MSR-registers
3240
MSR = Model Specific Register; the complete list of MSR-registers
3242
of a processor is included to the documentation on it (for example,
3241
of a processor is included to the documentation on it (for example,
3243
IA-32 Intel Architecture Software Developer's Manual,
3242
IA-32 Intel Architecture Software Developer's Manual,
3244
Volume 3, Appendix B); each processor family has its own subset
3243
Volume 3, Appendix B); each processor family has its own subset
3245
of the MSR-registers.
3244
of the MSR-registers.
3246
Parameters:
3245
Parameters:
3247
  * eax = 68 - function number
3246
  * eax = 68 - function number
3248
  * ebx = 4 - subfunction number
3247
  * ebx = 4 - subfunction number
3249
  * ecx is ignored
3248
  * ecx is ignored
3250
  * edx = MSR address
3249
  * edx = MSR address
3251
  * esi:edi = high:low dword
3250
  * esi:edi = high:low dword
3252
Returned value:
3251
Returned value:
3253
  * function does not return value
3252
  * function does not return value
3254
Remarks:
3253
Remarks:
3255
  * If ecx contains nonexistent or not implemented for this processor
3254
  * If ecx contains nonexistent or not implemented for this processor
3256
    MSR, processor will generate an exception in the kernel, which
3255
    MSR, processor will generate an exception in the kernel, which
3257
    will kill the thread.
3256
    will kill the thread.
3258
  * Previously it is necessary to check, whether MSRs are supported
3257
  * Previously it is necessary to check, whether MSRs are supported
3259
    as a whole, with the instruction 'cpuid'. Otherwise processor
3258
    as a whole, with the instruction 'cpuid'. Otherwise processor
3260
    will generate other exception in the kernel, which will anyway
3259
    will generate other exception in the kernel, which will anyway
3261
    kill the thread.
3260
    kill the thread.
3262
 
3261
 
3263
---------------------- Constants for registers: ----------------------
3262
---------------------- Constants for registers: ----------------------
3264
  eax - SF_SYS_MISC (68)
3263
  eax - SF_SYS_MISC (68)
3265
  ebx - SSF_WRITE_MSR (4)
3264
  ebx - SSF_WRITE_MSR (4)
3266
======================================================================
3265
======================================================================
3267
=== Function 68, subfunction 11 - initialize process heap ============
3266
=== Function 68, subfunction 11 - initialize process heap ============
3268
======================================================================
3267
======================================================================
3269
Parameters:
3268
Parameters:
3270
  * eax = 68 - function number
3269
  * eax = 68 - function number
3271
  * ebx = 11 - subfunction number
3270
  * ebx = 11 - subfunction number
3272
Returned value:
3271
Returned value:
3273
  * eax = 0 - failed
3272
  * eax = 0 - failed
3274
  * otherwise size of created heap
3273
  * otherwise size of created heap
3275
Remarks:
3274
Remarks:
3276
  * The function call initializes heap for subfunctions 12, 13 and 20.
3275
  * The function call initializes heap for subfunctions 12, 13 and 20.
3277
  * If the process heap is already created, this function will return
3276
  * If the process heap is already created, this function will return
3278
    the size of the existing heap.
3277
    the size of the existing heap.
3279
    Heap size is equal to total amount of free application memory.
3278
    Heap size is equal to total amount of free application memory.
3280
  * After creation of the heap calls to function 64 will be ignored.
3279
  * After creation of the heap calls to function 64 will be ignored.
3281
 
3280
 
3282
---------------------- Constants for registers: ----------------------
3281
---------------------- Constants for registers: ----------------------
3283
  eax - SF_SYS_MISC (68)
3282
  eax - SF_SYS_MISC (68)
3284
  ebx - SSF_HEAP_INIT (11)
3283
  ebx - SSF_HEAP_INIT (11)
3285
======================================================================
3284
======================================================================
3286
======== Function 68, subfunction 12 - allocate memory block. ========
3285
======== Function 68, subfunction 12 - allocate memory block. ========
3287
======================================================================
3286
======================================================================
3288
Parameters:
3287
Parameters:
3289
  * eax = 68 - function number
3288
  * eax = 68 - function number
3290
  * ebx = 12 - subfunction number
3289
  * ebx = 12 - subfunction number
3291
  * ecx = required size in bytes
3290
  * ecx = required size in bytes
3292
Returned value:
3291
Returned value:
3293
  * eax = pointer to the allocated block
3292
  * eax = pointer to the allocated block
3294
Remarks:
3293
Remarks:
3295
  * The function allocates an integer number of pages (4 Kb) in such
3294
  * The function allocates an integer number of pages (4 Kb) in such
3296
    way that the real size of allocated block is more than or equal to
3295
    way that the real size of allocated block is more than or equal to
3297
    requested size.
3296
    requested size.
3298
 
3297
 
3299
---------------------- Constants for registers: ----------------------
3298
---------------------- Constants for registers: ----------------------
3300
  eax - SF_SYS_MISC (68)
3299
  eax - SF_SYS_MISC (68)
3301
  ebx - SSF_MEM_ALLOC (12)
3300
  ebx - SSF_MEM_ALLOC (12)
3302
======================================================================
3301
======================================================================
3303
========== Function 68, subfunction 13 - free memory block. ==========
3302
========== Function 68, subfunction 13 - free memory block. ==========
3304
======================================================================
3303
======================================================================
3305
Parameters:
3304
Parameters:
3306
  * eax = 68 - function number
3305
  * eax = 68 - function number
3307
  * ebx = 13 - subfunction number
3306
  * ebx = 13 - subfunction number
3308
  * ecx = pointer to the memory block
3307
  * ecx = pointer to the memory block
3309
Returned value:
3308
Returned value:
3310
  * eax = 1 - success
3309
  * eax = 1 - success
3311
  * eax = 0 - failed
3310
  * eax = 0 - failed
3312
Remarks:
3311
Remarks:
3313
  * The memory block must have been allocated by subfunction 12
3312
  * The memory block must have been allocated by subfunction 12
3314
    or subfunction 20.
3313
    or subfunction 20.
3315
 
3314
 
3316
---------------------- Constants for registers: ----------------------
3315
---------------------- Constants for registers: ----------------------
3317
  eax - SF_SYS_MISC (68)
3316
  eax - SF_SYS_MISC (68)
3318
  ebx - SSF_MEM_FREE (13)
3317
  ebx - SSF_MEM_FREE (13)
3319
======================================================================
3318
======================================================================
3320
===================== Function 68, subfunction 14 ====================
3319
===================== Function 68, subfunction 14 ====================
3321
============ Wait for signal from another program/driver. ============
3320
============ Wait for signal from another program/driver. ============
3322
======================================================================
3321
======================================================================
3323
Parameters:
3322
Parameters:
3324
  * eax = 68 - function number
3323
  * eax = 68 - function number
3325
  * ebx = 14 - subfunction number
3324
  * ebx = 14 - subfunction number
3326
  * ecx = pointer to the buffer for information (24 bytes)
3325
  * ecx = pointer to the buffer for information (24 bytes)
3327
Returned value:
3326
Returned value:
3328
  * buffer pointed to by ecx contains the following information:
3327
  * buffer pointed to by ecx contains the following information:
3329
    * +0: dword: identifier for following data of signal
3328
    * +0: dword: identifier for following data of signal
3330
    * +4: dword: data of signal (20 bytes), format of which is defined
3329
    * +4: dword: data of signal (20 bytes), format of which is defined
3331
          by the first dword
3330
          by the first dword
3332
 
3331
 
3333
---------------------- Constants for registers: ----------------------
3332
---------------------- Constants for registers: ----------------------
3334
  eax - SF_SYS_MISC (68)
3333
  eax - SF_SYS_MISC (68)
3335
  ebx - SSF_WAIT_SIGNAL (14)
3334
  ebx - SSF_WAIT_SIGNAL (14)
3336
======================================================================
3335
======================================================================
3337
============= Function 68, subfunction 16 - load driver. =============
3336
============= Function 68, subfunction 16 - load driver. =============
3338
======================================================================
3337
======================================================================
3339
Parameters:
3338
Parameters:
3340
  * eax = 68 - function number
3339
  * eax = 68 - function number
3341
  * ebx = 16 - subfunction number
3340
  * ebx = 16 - subfunction number
3342
  * ecx = pointer to ASCIIZ-string with driver name
3341
  * ecx = pointer to ASCIIZ-string with driver name
3343
Returned value:
3342
Returned value:
3344
  * eax = 0 - failed
3343
  * eax = 0 - failed
3345
  * otherwise eax = driver handle
3344
  * otherwise eax = driver handle
3346
Remarks:
3345
Remarks:
3347
  * If the driver was not loaded yet, it is loaded;
3346
  * If the driver was not loaded yet, it is loaded;
3348
    if the driver was loaded yet, nothing happens.
3347
    if the driver was loaded yet, nothing happens.
3349
  * Driver name is case-sensitive.
3348
  * Driver name is case-sensitive.
3350
    Maximum length of the name is 16 characters, including
3349
    Maximum length of the name is 16 characters, including
3351
    terminating null character, the rest is ignored.
3350
    terminating null character, the rest is ignored.
3352
  * Driver ABC is loaded from file /rd/1/drivers/ABC.obj.
3351
  * Driver ABC is loaded from file /rd/1/drivers/ABC.obj.
3353
 
3352
 
3354
---------------------- Constants for registers: ----------------------
3353
---------------------- Constants for registers: ----------------------
3355
  eax - SF_SYS_MISC (68)
3354
  eax - SF_SYS_MISC (68)
3356
  ebx - SSF_LOAD_DRIVER (16)
3355
  ebx - SSF_LOAD_DRIVER (16)
3357
======================================================================
3356
======================================================================
3358
============ Function 68, subfunction 17 - driver control. ===========
3357
============ Function 68, subfunction 17 - driver control. ===========
3359
======================================================================
3358
======================================================================
3360
Parameters:
3359
Parameters:
3361
  * eax = 68 - function number
3360
  * eax = 68 - function number
3362
  * ebx = 17 - subfunction number
3361
  * ebx = 17 - subfunction number
3363
  * ecx = pointer to the control structure:
3362
  * ecx = pointer to the control structure:
3364
    * +0: dword: handle of driver
3363
    * +0: dword: handle of driver
3365
    * +4: dword: code of driver function
3364
    * +4: dword: code of driver function
3366
    * +8: dword: pointer to input data
3365
    * +8: dword: pointer to input data
3367
    * +12 = +0xC: dword: size of input data
3366
    * +12 = +0xC: dword: size of input data
3368
    * +16 = +0x10: dword: pointer to output data
3367
    * +16 = +0x10: dword: pointer to output data
3369
    * +20 = +0x14: dword: size of output data
3368
    * +20 = +0x14: dword: size of output data
3370
Returned value:
3369
Returned value:
3371
  * eax = determined by driver
3370
  * eax = determined by driver
3372
Remarks:
3371
Remarks:
3373
  * Function codes and the structure of input/output data
3372
  * Function codes and the structure of input/output data
3374
    are defined by driver.
3373
    are defined by driver.
3375
  * Previously one must obtain driver handle by subfunction 16.
3374
  * Previously one must obtain driver handle by subfunction 16.
3376
 
3375
 
3377
---------------------- Constants for registers: ----------------------
3376
---------------------- Constants for registers: ----------------------
3378
  eax - SF_SYS_MISC (68)
3377
  eax - SF_SYS_MISC (68)
3379
  ebx - SSF_CONTROL_DRIVER (17)
3378
  ebx - SSF_CONTROL_DRIVER (17)
3380
======================================================================
3379
======================================================================
3381
== Function 68, subfunction 18 - load DLL, specifying the encoding. ==
3380
== Function 68, subfunction 18 - load DLL, specifying the encoding. ==
3382
======================================================================
3381
======================================================================
3383
Parameters:
3382
Parameters:
3384
  * eax = 68 - function number
3383
  * eax = 68 - function number
3385
  * ebx = 18 - subfunction number
3384
  * ebx = 18 - subfunction number
3386
  * ecx = pointer to the string with path to DLL
3385
  * ecx = pointer to the string with path to DLL
3387
  * edx = string encoding, details can be found in function 80 description.
3386
  * edx = string encoding, details can be found in function 80 description.
3388
Returned value:
3387
Returned value:
3389
  * eax = 0 - failed
3388
  * eax = 0 - failed
3390
  * otherwise eax = pointer to DLL export table
3389
  * otherwise eax = pointer to DLL export table
3391
Remarks:
3390
Remarks:
3392
  * Export table is an array of structures of 2 dword's, terminated
3391
  * Export table is an array of structures of 2 dword's, terminated
3393
    by zero. The first dword in structure points to function name,
3392
    by zero. The first dword in structure points to function name,
3394
    the second dword contains address of function.
3393
    the second dword contains address of function.
3395
 
3394
 
3396
======================================================================
3395
======================================================================
3397
=============== Function 68, subfunction 19 - load DLL. ==============
3396
=============== Function 68, subfunction 19 - load DLL. ==============
3398
======================================================================
3397
======================================================================
3399
Parameters:
3398
Parameters:
3400
  * eax = 68 - function number
3399
  * eax = 68 - function number
3401
  * ebx = 19 - subfunction number
3400
  * ebx = 19 - subfunction number
3402
  * ecx = pointer to the string with path to DLL,
3401
  * ecx = pointer to the string with path to DLL,
3403
    rules of path forming can be found in function 70 description.
3402
    rules of path forming can be found in function 70 description.
3404
Returned value:
3403
Returned value:
3405
  * eax = 0 - failed
3404
  * eax = 0 - failed
3406
  * otherwise eax = pointer to DLL export table
3405
  * otherwise eax = pointer to DLL export table
3407
 
3406
 
3408
---------------------- Constants for registers: ----------------------
3407
---------------------- Constants for registers: ----------------------
3409
  eax - SF_SYS_MISC (68)
3408
  eax - SF_SYS_MISC (68)
3410
  ebx - SSF_LOAD_DLL (19)
3409
  ebx - SSF_LOAD_DLL (19)
3411
======================================================================
3410
======================================================================
3412
======= Function 68, subfunction 20 - reallocate memory block. =======
3411
======= Function 68, subfunction 20 - reallocate memory block. =======
3413
======================================================================
3412
======================================================================
3414
Parameters:
3413
Parameters:
3415
  * eax = 68 - function number
3414
  * eax = 68 - function number
3416
  * ebx = 20 - subfunction number
3415
  * ebx = 20 - subfunction number
3417
  * ecx = new size in bytes
3416
  * ecx = new size in bytes
3418
  * edx = pointer to already allocated block
3417
  * edx = pointer to already allocated block
3419
Returned value:
3418
Returned value:
3420
  * eax = pointer to the reallocated block, 0 = error
3419
  * eax = pointer to the reallocated block, 0 = error
3421
Remarks:
3420
Remarks:
3422
  * Before this call one must initialize process heap by call to
3421
  * Before this call one must initialize process heap by call to
3423
    subfunction 11.
3422
    subfunction 11.
3424
  * The function allocates an integer number of pages (4 Kb) in such
3423
  * The function allocates an integer number of pages (4 Kb) in such
3425
    way that the real size of allocated block is more than or equal to
3424
    way that the real size of allocated block is more than or equal to
3426
    requested size.
3425
    requested size.
3427
  * If edx=0, the function call is equivalent to memory allocation
3426
  * If edx=0, the function call is equivalent to memory allocation
3428
    with subfunction 12. Otherwise the block at edx
3427
    with subfunction 12. Otherwise the block at edx
3429
    must be allocated earlier with subfunction 12 or this subfunction.
3428
    must be allocated earlier with subfunction 12 or this subfunction.
3430
  * If ecx=0, the function frees memory block at edx and returns 0.
3429
  * If ecx=0, the function frees memory block at edx and returns 0.
3431
  * The contents of the block are unchanged up to the shorter of
3430
  * The contents of the block are unchanged up to the shorter of
3432
    the new and old sizes.
3431
    the new and old sizes.
3433
 
3432
 
3434
---------------------- Constants for registers: ----------------------
3433
---------------------- Constants for registers: ----------------------
3435
  eax - SF_SYS_MISC (68)
3434
  eax - SF_SYS_MISC (68)
3436
  ebx - SSF_MEM_REALLOC (20)
3435
  ebx - SSF_MEM_REALLOC (20)
3437
======================================================================
3436
======================================================================
3438
=========== Function 68, subfunction 21 - load driver PE. ============
3437
=========== Function 68, subfunction 21 - load driver PE. ============
3439
======================================================================
3438
======================================================================
3440
Parameters:
3439
Parameters:
3441
  * eax = 68 - function number
3440
  * eax = 68 - function number
3442
  * ebx = 21 - subfunction number
3441
  * ebx = 21 - subfunction number
3443
  * ecx = pointer to ASCIIZ-string with driver name
3442
  * ecx = pointer to ASCIIZ-string with driver name
3444
  * edx = pointer to command line
3443
  * edx = pointer to command line
3445
Returned value:
3444
Returned value:
3446
  * eax = 0 - failed
3445
  * eax = 0 - failed
3447
  * otherwise eax = driver handle
3446
  * otherwise eax = driver handle
3448
Remarks:
3447
Remarks:
3449
  * If the driver was not loaded yet, it is loaded;
3448
  * If the driver was not loaded yet, it is loaded;
3450
    if the driver was loaded yet, nothing happens.
3449
    if the driver was loaded yet, nothing happens.
3451
 
3450
 
3452
---------------------- Constants for registers: ----------------------
3451
---------------------- Constants for registers: ----------------------
3453
  eax - SF_SYS_MISC (68)
3452
  eax - SF_SYS_MISC (68)
3454
  ebx - SSF_LOAD_DRIVER_PE (21)
3453
  ebx - SSF_LOAD_DRIVER_PE (21)
3455
======================================================================
3454
======================================================================
3456
======== Function 68, subfunction 22 - open named memory area. =======
3455
======== Function 68, subfunction 22 - open named memory area. =======
3457
======================================================================
3456
======================================================================
3458
Parameters:
3457
Parameters:
3459
  * eax = 68 - function number
3458
  * eax = 68 - function number
3460
  * ebx = 22 - subfunction number
3459
  * ebx = 22 - subfunction number
3461
  * ecx = area name. Maximum of 31 characters with terminating zero
3460
  * ecx = area name. Maximum of 31 characters with terminating zero
3462
  * edx = area size in bytes for SHM_CREATE and SHM_OPEN_ALWAYS
3461
  * edx = area size in bytes for SHM_CREATE and SHM_OPEN_ALWAYS
3463
  * esi = flags for open and access:
3462
  * esi = flags for open and access:
3464
    * SHM_OPEN        = 0x00 - open existing memory area. If an area
3463
    * SHM_OPEN        = 0x00 - open existing memory area. If an area
3465
                          with such name does not exist, the function
3464
                          with such name does not exist, the function
3466
                          will return error code 5.
3465
                          will return error code 5.
3467
    * SHM_OPEN_ALWAYS = 0x04 - open existing or create new
3466
    * SHM_OPEN_ALWAYS = 0x04 - open existing or create new
3468
                          memory area.
3467
                          memory area.
3469
    * SHM_CREATE      = 0x08 - create new memory area. If an area
3468
    * SHM_CREATE      = 0x08 - create new memory area. If an area
3470
                          with such name already exists, the function
3469
                          with such name already exists, the function
3471
                          will return error code 10.
3470
                          will return error code 10.
3472
    * SHM_READ        = 0x00 - only read access
3471
    * SHM_READ        = 0x00 - only read access
3473
    * SHM_WRITE       = 0x01 - read and write access
3472
    * SHM_WRITE       = 0x01 - read and write access
3474
Returned value:
3473
Returned value:
3475
  * eax = pointer to memory area, 0 if error has occured
3474
  * eax = pointer to memory area, 0 if error has occured
3476
  * if new area is created (SHM_CREATE or SHM_OPEN_ALWAYS):
3475
  * if new area is created (SHM_CREATE or SHM_OPEN_ALWAYS):
3477
    edx = 0 - success, otherwise - error code
3476
    edx = 0 - success, otherwise - error code
3478
  * if existing area is opened (SHM_OPEN or SHM_OPEN_ALWAYS):
3477
  * if existing area is opened (SHM_OPEN or SHM_OPEN_ALWAYS):
3479
    edx = error code (if eax=0) or area size in bytes
3478
    edx = error code (if eax=0) or area size in bytes
3480
Error codes:
3479
Error codes:
3481
  * E_NOTFOUND = 5
3480
  * E_NOTFOUND = 5
3482
  * E_ACCESS = 10
3481
  * E_ACCESS = 10
3483
  * E_NOMEM = 30
3482
  * E_NOMEM = 30
3484
  * E_PARAM = 33
3483
  * E_PARAM = 33
3485
Remarks:
3484
Remarks:
3486
  * Before this call one must initialize process heap by call to
3485
  * Before this call one must initialize process heap by call to
3487
    subfunction 11.
3486
    subfunction 11.
3488
  * If a new area is created, access flags set maximal rights
3487
  * If a new area is created, access flags set maximal rights
3489
    for other processes. An attempt from other process to open
3488
    for other processes. An attempt from other process to open
3490
    with denied rights will fail with error code E_ACCESS.
3489
    with denied rights will fail with error code E_ACCESS.
3491
  * The process which has created an area always has write access.
3490
  * The process which has created an area always has write access.
3492
 
3491
 
3493
---------------------- Constants for registers: ----------------------
3492
---------------------- Constants for registers: ----------------------
3494
  eax - SF_SYS_MISC (68)
3493
  eax - SF_SYS_MISC (68)
3495
  ebx - SSF_MEM_OPEN (22)
3494
  ebx - SSF_MEM_OPEN (22)
3496
======================================================================
3495
======================================================================
3497
======= Function 68, subfunction 23 - close named memory area. =======
3496
======= Function 68, subfunction 23 - close named memory area. =======
3498
======================================================================
3497
======================================================================
3499
Parameters:
3498
Parameters:
3500
  * eax = 68 - function number
3499
  * eax = 68 - function number
3501
  * ebx = 23 - subfunction number
3500
  * ebx = 23 - subfunction number
3502
  * ecx = area name. Maximum of 31 characters with terminating zero
3501
  * ecx = area name. Maximum of 31 characters with terminating zero
3503
Returned value:
3502
Returned value:
3504
  * eax destroyed
3503
  * eax destroyed
3505
Remarks:
3504
Remarks:
3506
  * A memory area is physically freed (with deleting all data and
3505
  * A memory area is physically freed (with deleting all data and
3507
    freeing physical memory), when all threads which have opened
3506
    freeing physical memory), when all threads which have opened
3508
    this area will close it.
3507
    this area will close it.
3509
  * When thread is terminating, all opened by it areas are closed.
3508
  * When thread is terminating, all opened by it areas are closed.
3510
 
3509
 
3511
---------------------- Constants for registers: ----------------------
3510
---------------------- Constants for registers: ----------------------
3512
  eax - SF_SYS_MISC (68)
3511
  eax - SF_SYS_MISC (68)
3513
  ebx - SSF_MEM_CLOSE (23)
3512
  ebx - SSF_MEM_CLOSE (23)
3514
======================================================================
3513
======================================================================
3515
======== Function 68, subfunction 24 - set exception handler. ========
3514
======== Function 68, subfunction 24 - set exception handler. ========
3516
======================================================================
3515
======================================================================
3517
Parameters:
3516
Parameters:
3518
  * eax = 68 - function number
3517
  * eax = 68 - function number
3519
  * ebx = 24 - subfunction number
3518
  * ebx = 24 - subfunction number
3520
  * ecx = address of the new exception handler
3519
  * ecx = address of the new exception handler
3521
  * edx = the mask of handled exceptions
3520
  * edx = the mask of handled exceptions
3522
Returned value:
3521
Returned value:
3523
  * eax = address of the old exception handler (0, if it was not set)
3522
  * eax = address of the old exception handler (0, if it was not set)
3524
  * ebx = the old mask of handled exceptions
3523
  * ebx = the old mask of handled exceptions
3525
Remarks:
3524
Remarks:
3526
  * Bit number in mask of exceptions corresponds to exception number
3525
  * Bit number in mask of exceptions corresponds to exception number
3527
    in CPU-specification (Intel-PC). For example, FPU exceptions have
3526
    in CPU-specification (Intel-PC). For example, FPU exceptions have
3528
    number 16 (#MF), and SSE exceptions - 19 (#XF).
3527
    number 16 (#MF), and SSE exceptions - 19 (#XF).
3529
  * The current implementation ignores the inquiry for hook of 7
3528
  * The current implementation ignores the inquiry for hook of 7
3530
    exception - the system handles #NM by its own.
3529
    exception - the system handles #NM by its own.
3531
  * The exception handler is called with exception number as first
3530
  * The exception handler is called with exception number as first
3532
    (and only) stack parameter. So, correct exit from the handler is
3531
    (and only) stack parameter. So, correct exit from the handler is
3533
    RET 4. It returns to the instruction, that caused the exception,
3532
    RET 4. It returns to the instruction, that caused the exception,
3534
    for faults, and to the next instruction for traps (see
3533
    for faults, and to the next instruction for traps (see
3535
    classification of exceptions in CPU specification).
3534
    classification of exceptions in CPU specification).
3536
  * When user handler receives control, the corresponding bit in
3535
  * When user handler receives control, the corresponding bit in
3537
    the exception mask is cleared. Raising this exception
3536
    the exception mask is cleared. Raising this exception
3538
    in consequence leads to default handling, that is,
3537
    in consequence leads to default handling, that is,
3539
    terminating the application in absence of debugger or
3538
    terminating the application in absence of debugger or
3540
    suspend with notification of debugger otherwise.
3539
    suspend with notification of debugger otherwise.
3541
  * After user handler completes critical operations, it can set
3540
  * After user handler completes critical operations, it can set
3542
    the corresponding bit in the exception mask with subfunction 25.
3541
    the corresponding bit in the exception mask with subfunction 25.
3543
    Also user handler is responsible for clearing exceptions flags in
3542
    Also user handler is responsible for clearing exceptions flags in
3544
    FPU and/or SSE.
3543
    FPU and/or SSE.
3545
 
3544
 
3546
---------------------- Constants for registers: ----------------------
3545
---------------------- Constants for registers: ----------------------
3547
  eax - SF_SYS_MISC (68)
3546
  eax - SF_SYS_MISC (68)
3548
  ebx - SSF_SET_EXCEPTION_HANDLER (24)
3547
  ebx - SSF_SET_EXCEPTION_HANDLER (24)
3549
======================================================================
3548
======================================================================
3550
======== Function 68, subfunction 25 - set exception activity ========
3549
======== Function 68, subfunction 25 - set exception activity ========
3551
======================================================================
3550
======================================================================
3552
Parameters:
3551
Parameters:
3553
  * eax = 68 - function number
3552
  * eax = 68 - function number
3554
  * ebx = 25 - subfunction number
3553
  * ebx = 25 - subfunction number
3555
  * ecx = signal number
3554
  * ecx = signal number
3556
  * edx = value of activity (0/1)
3555
  * edx = value of activity (0/1)
3557
Returned value:
3556
Returned value:
3558
  * eax = -1 - invalid signal number
3557
  * eax = -1 - invalid signal number
3559
  * otherwise eax = old value of activity for this signal (0/1)
3558
  * otherwise eax = old value of activity for this signal (0/1)
3560
Remarks:
3559
Remarks:
3561
  * In current implementation only mask for user excepton handler,
3560
  * In current implementation only mask for user excepton handler,
3562
    which has been previously set by subfunction 24,
3561
    which has been previously set by subfunction 24,
3563
    is changed. Signal number corresponds to exception number.
3562
    is changed. Signal number corresponds to exception number.
3564
 
3563
 
3565
---------------------- Constants for registers: ----------------------
3564
---------------------- Constants for registers: ----------------------
3566
  eax - SF_SYS_MISC (68)
3565
  eax - SF_SYS_MISC (68)
3567
  ebx - SSF_SET_EXCEPTION_STATE (25)
3566
  ebx - SSF_SET_EXCEPTION_STATE (25)
3568
======================================================================
3567
======================================================================
3569
====== Function 68, subfunction 26 - release memory pages ============
3568
====== Function 68, subfunction 26 - release memory pages ============
3570
======================================================================
3569
======================================================================
3571
Parameters:
3570
Parameters:
3572
  * eax = 68 - function number
3571
  * eax = 68 - function number
3573
  * ebx = 26 - subfunction number
3572
  * ebx = 26 - subfunction number
3574
  * ecx = pointer to the memory block, allocated by subfunction 12
3573
  * ecx = pointer to the memory block, allocated by subfunction 12
3575
  * edx = offset from the block beginnings
3574
  * edx = offset from the block beginnings
3576
  * esi = the size of the region of memory to release, in bytes
3575
  * esi = the size of the region of memory to release, in bytes
3577
Remarks:
3576
Remarks:
3578
  * function release range of pages from ecx+edx to ecx+edx+esi
3577
  * function release range of pages from ecx+edx to ecx+edx+esi
3579
    and set virtual memory into reserved state.
3578
    and set virtual memory into reserved state.
3580
 
3579
 
3581
---------------------- Constants for registers: ----------------------
3580
---------------------- Constants for registers: ----------------------
3582
  eax - SF_SYS_MISC (68)
3581
  eax - SF_SYS_MISC (68)
3583
  ebx - SSF_MEM_FREE_EXT (26)
3582
  ebx - SSF_MEM_FREE_EXT (26)
3584
======================================================================
3583
======================================================================
3585
========== Function 68, subfunction 27 - load file ===================
3584
========== Function 68, subfunction 27 - load file ===================
3586
======================================================================
3585
======================================================================
3587
Parameters:
3586
Parameters:
3588
  * eax = 68 - function number
3587
  * eax = 68 - function number
3589
  * ebx = 27 - subfunction number
3588
  * ebx = 27 - subfunction number
3590
  * ecx = pointer to the string with path to file,
3589
  * ecx = pointer to the string with path to file,
3591
    rules of path forming can be found in function 70 description.
3590
    rules of path forming can be found in function 70 description.
3592
Returned value:
3591
Returned value:
3593
  * eax = pointer to the loaded file, or zero
3592
  * eax = pointer to the loaded file, or zero
3594
  * edx = size of the loaded file, or zero
3593
  * edx = size of the loaded file, or zero
3595
Remarks:
3594
Remarks:
3596
  * function loads file and unpacks, if necessary
3595
  * function loads file and unpacks, if necessary
3597
  * Before this call one must initialize process heap by call to
3596
  * Before this call one must initialize process heap by call to
3598
    subfunction 11.  
3597
    subfunction 11.  
3599
 
3598
 
3600
---------------------- Constants for registers: ----------------------
3599
---------------------- Constants for registers: ----------------------
3601
  eax - SF_SYS_MISC (68)
3600
  eax - SF_SYS_MISC (68)
3602
  ebx - SSF_LOAD_FILE (27)
3601
  ebx - SSF_LOAD_FILE (27)
3603
======================================================================
3602
======================================================================
3604
== Function 68, subfunction 28 - load file, specifying the encoding ==
3603
== Function 68, subfunction 28 - load file, specifying the encoding ==
3605
======================================================================
3604
======================================================================
3606
Parameters:
3605
Parameters:
3607
  * eax = 68 - function number
3606
  * eax = 68 - function number
3608
  * ebx = 28 - subfunction number
3607
  * ebx = 28 - subfunction number
3609
  * ecx = pointer to the string with path to file
3608
  * ecx = pointer to the string with path to file
3610
  * edx = string encoding, details can be found in function 80 description.
3609
  * edx = string encoding, details can be found in function 80 description.
3611
Returned value:
3610
Returned value:
3612
  * eax = pointer to the loaded file, or zero
3611
  * eax = pointer to the loaded file, or zero
3613
  * edx = size of the loaded file, or zero
3612
  * edx = size of the loaded file, or zero
3614
Remarks:
3613
Remarks:
3615
  * function loads file and unpacks, if necessary
3614
  * function loads file and unpacks, if necessary
3616
 
3615
 
3617
======================================================================
3616
======================================================================
3618
====================== Function 69 - debugging. ======================
3617
====================== Function 69 - debugging. ======================
3619
======================================================================
3618
======================================================================
3620
A process can load other process as debugged by set of corresponding
3619
A process can load other process as debugged by set of corresponding
3621
bit by call to subfunction 7 of function 70.
3620
bit by call to subfunction 7 of function 70.
3622
A process can have only one debugger; one process can debug some
3621
A process can have only one debugger; one process can debug some
3623
others. The system notifies debugger on events occuring with
3622
others. The system notifies debugger on events occuring with
3624
debugged process. Messages are written to the buffer defined by
3623
debugged process. Messages are written to the buffer defined by
3625
subfunction 0.
3624
subfunction 0.
3626
Format of a message:
3625
Format of a message:
3627
  * +0: dword: message code
3626
  * +0: dword: message code
3628
  * +4: dword: PID of debugged process
3627
  * +4: dword: PID of debugged process
3629
  * +8: there can be additional data depending on message code
3628
  * +8: there can be additional data depending on message code
3630
Message codes:
3629
Message codes:
3631
  * 1 = exception
3630
  * 1 = exception
3632
    * in addition dword-number of the exception is given
3631
    * in addition dword-number of the exception is given
3633
    * process is suspended
3632
    * process is suspended
3634
  * 2 = process has terminated
3633
  * 2 = process has terminated
3635
    * comes at any termination: both through the system function -1,
3634
    * comes at any termination: both through the system function -1,
3636
      and at "murder" by any other process (including debugger itself)
3635
      and at "murder" by any other process (including debugger itself)
3637
  * 3 = debug exception int 1 = #DB
3636
  * 3 = debug exception int 1 = #DB
3638
    * in addition dword-image of the register DR6 is given:
3637
    * in addition dword-image of the register DR6 is given:
3639
      * bits 0-3: condition of the corresponding breakpoint (set by
3638
      * bits 0-3: condition of the corresponding breakpoint (set by
3640
        subfunction 9) is satisfied
3639
        subfunction 9) is satisfied
3641
      * bit 14: exception has occured because of the trace mode
3640
      * bit 14: exception has occured because of the trace mode
3642
        (flag TF is set TF)
3641
        (flag TF is set TF)
3643
    * process is suspended
3642
    * process is suspended
3644
When debugger terminates, all debugged processes are killed.
3643
When debugger terminates, all debugged processes are killed.
3645
If debugger does not want this, it must previously detach by
3644
If debugger does not want this, it must previously detach by
3646
subfunction 3.
3645
subfunction 3.
3647
 
3646
 
3648
All subfunctions are applicable only to processes/threads started
3647
All subfunctions are applicable only to processes/threads started
3649
from the current by function 70 with set debugging flag.
3648
from the current by function 70 with set debugging flag.
3650
Debugging of multithreaded programs is not supported yet.
3649
Debugging of multithreaded programs is not supported yet.
3651
The full list of subfunctions:
3650
The full list of subfunctions:
3652
  * subfunction 0 - define data area for debug messages
3651
  * subfunction 0 - define data area for debug messages
3653
  * subfunction 1 - get contents of registers of debugged thread
3652
  * subfunction 1 - get contents of registers of debugged thread
3654
  * subfunction 2 - set contents of registers of debugged thread
3653
  * subfunction 2 - set contents of registers of debugged thread
3655
  * subfunction 3 - detach from debugged process
3654
  * subfunction 3 - detach from debugged process
3656
  * subfunction 4 - suspend debugged thread
3655
  * subfunction 4 - suspend debugged thread
3657
  * subfunction 5 - resume debugged thread
3656
  * subfunction 5 - resume debugged thread
3658
  * subfunction 6 - read from the memory of debugged process
3657
  * subfunction 6 - read from the memory of debugged process
3659
  * subfunction 7 - write to the memory of debugged process
3658
  * subfunction 7 - write to the memory of debugged process
3660
  * subfunction 8 - terminate debugged thread
3659
  * subfunction 8 - terminate debugged thread
3661
  * subfunction 9 - set/clear hardware breakpoint
3660
  * subfunction 9 - set/clear hardware breakpoint
3662
 
3661
 
3663
---------------------- Constants for registers: ----------------------
3662
---------------------- Constants for registers: ----------------------
3664
  eax - SF_DEBUG (69)
3663
  eax - SF_DEBUG (69)
3665
  ebx - SSF_SET_MESSAGE_AREA (0), SSF_GET_REGISTERS (1),
3664
  ebx - SSF_SET_MESSAGE_AREA (0), SSF_GET_REGISTERS (1),
3666
    SSF_SET_REGISTERS (2), SSF_DETACH (3), SSF_SUSPEND (4),
3665
    SSF_SET_REGISTERS (2), SSF_DETACH (3), SSF_SUSPEND (4),
3667
    SSF_RESUME (5), SSF_READ_MEMORY (6), SSF_WRITE_MEMORY (7),
3666
    SSF_RESUME (5), SSF_READ_MEMORY (6), SSF_WRITE_MEMORY (7),
3668
    SSF_TERMINATE (8), SSF_DEFINE_BREAKPOINT (9)
3667
    SSF_TERMINATE (8), SSF_DEFINE_BREAKPOINT (9)
3669
======================================================================
3668
======================================================================
3670
= Function 69, subfunction 0 - define data area fror debug messages. =
3669
= Function 69, subfunction 0 - define data area fror debug messages. =
3671
======================================================================
3670
======================================================================
3672
Parameters:
3671
Parameters:
3673
  * eax = 69 - function number
3672
  * eax = 69 - function number
3674
  * ebx = 0 - subfunction number
3673
  * ebx = 0 - subfunction number
3675
  * ecx = pointer
3674
  * ecx = pointer
3676
Format of data area:
3675
Format of data area:
3677
  * +0: dword: N = buffer size (not including this header)
3676
  * +0: dword: N = buffer size (not including this header)
3678
  * +4: dword: occupied place
3677
  * +4: dword: occupied place
3679
  * +8: N*byte: buffer
3678
  * +8: N*byte: buffer
3680
Returned value:
3679
Returned value:
3681
  * function does not return value
3680
  * function does not return value
3682
Remarks:
3681
Remarks:
3683
  * If the size field is negative, the buffer is considered locked
3682
  * If the size field is negative, the buffer is considered locked
3684
    and at arrival of new message the system will wait.
3683
    and at arrival of new message the system will wait.
3685
    For synchronization frame all work with the buffer by operations
3684
    For synchronization frame all work with the buffer by operations
3686
    lock/unlock
3685
    lock/unlock
3687
        neg     [bufsize]
3686
        neg     [bufsize]
3688
  * Data in the buffer are considered as array of items with variable
3687
  * Data in the buffer are considered as array of items with variable
3689
    length - messages. Format of a message is explained in
3688
    length - messages. Format of a message is explained in
3690
    general description.
3689
    general description.
3691
 
3690
 
3692
---------------------- Constants for registers: ----------------------
3691
---------------------- Constants for registers: ----------------------
3693
  eax - SF_DEBUG (69)
3692
  eax - SF_DEBUG (69)
3694
  ebx - SSF_SET_MESSAGE_AREA (0)
3693
  ebx - SSF_SET_MESSAGE_AREA (0)
3695
======================================================================
3694
======================================================================
3696
===================== Function 69, subfunction 1 =====================
3695
===================== Function 69, subfunction 1 =====================
3697
============ Get contents of registers of debugged thread. ===========
3696
============ Get contents of registers of debugged thread. ===========
3698
======================================================================
3697
======================================================================
3699
Parameters:
3698
Parameters:
3700
  * eax = 69 - function number
3699
  * eax = 69 - function number
3701
  * ebx = 1 - subfunction number
3700
  * ebx = 1 - subfunction number
3702
  * ecx = thread identifier
3701
  * ecx = thread identifier
3703
  * edx = size of context structure, must be 0x28=40 bytes
3702
  * edx = size of context structure, must be 0x28=40 bytes
3704
  * esi = pointer to context structure
3703
  * esi = pointer to context structure
3705
Returned value:
3704
Returned value:
3706
  * function does not return value
3705
  * function does not return value
3707
Format of context structure: (FPU is not supported yet)
3706
Format of context structure: (FPU is not supported yet)
3708
  * +0: dword: eip
3707
  * +0: dword: eip
3709
  * +4: dword: eflags
3708
  * +4: dword: eflags
3710
  * +8: dword: eax
3709
  * +8: dword: eax
3711
  * +12 = +0xC: dword: ecx
3710
  * +12 = +0xC: dword: ecx
3712
  * +16 = +0x10: dword: edx
3711
  * +16 = +0x10: dword: edx
3713
  * +20 = +0x14: dword: ebx
3712
  * +20 = +0x14: dword: ebx
3714
  * +24 = +0x18: dword: esp
3713
  * +24 = +0x18: dword: esp
3715
  * +28 = +0x1C: dword: ebp
3714
  * +28 = +0x1C: dword: ebp
3716
  * +32 = +0x20: dword: esi
3715
  * +32 = +0x20: dword: esi
3717
  * +36 = +0x24: dword: edi
3716
  * +36 = +0x24: dword: edi
3718
Remarks:
3717
Remarks:
3719
  * If the thread executes code of ring-0, the function returns
3718
  * If the thread executes code of ring-0, the function returns
3720
    contents of registers of ring-3.
3719
    contents of registers of ring-3.
3721
  * Process must be loaded for debugging (as is shown in
3720
  * Process must be loaded for debugging (as is shown in
3722
    general description).
3721
    general description).
3723
 
3722
 
3724
---------------------- Constants for registers: ----------------------
3723
---------------------- Constants for registers: ----------------------
3725
  eax - SF_DEBUG (69)
3724
  eax - SF_DEBUG (69)
3726
  ebx - SSF_GET_REGISTERS (1)
3725
  ebx - SSF_GET_REGISTERS (1)
3727
======================================================================
3726
======================================================================
3728
===================== Function 69, subfunction 2 =====================
3727
===================== Function 69, subfunction 2 =====================
3729
============ Set contents of registers of debugged thread. ===========
3728
============ Set contents of registers of debugged thread. ===========
3730
======================================================================
3729
======================================================================
3731
Parameters:
3730
Parameters:
3732
  * eax = 69 - function number
3731
  * eax = 69 - function number
3733
  * ebx = 2 - subfunction number
3732
  * ebx = 2 - subfunction number
3734
  * ecx = thread identifier
3733
  * ecx = thread identifier
3735
  * edx = size of context structure, must be 0x28=40 bytes
3734
  * edx = size of context structure, must be 0x28=40 bytes
3736
  * esi -> context structure
3735
  * esi -> context structure
3737
Returned value:
3736
Returned value:
3738
  * function does not return value
3737
  * function does not return value
3739
Format of context structure is shown in the description of
3738
Format of context structure is shown in the description of
3740
subfunction 1.
3739
subfunction 1.
3741
Remarks:
3740
Remarks:
3742
  * If the thread executes code of ring-0, the function returns
3741
  * If the thread executes code of ring-0, the function returns
3743
    contents of registers of ring-3.
3742
    contents of registers of ring-3.
3744
  * Process must be loaded for debugging (as is shown in
3743
  * Process must be loaded for debugging (as is shown in
3745
    general description).
3744
    general description).
3746
 
3745
 
3747
---------------------- Constants for registers: ----------------------
3746
---------------------- Constants for registers: ----------------------
3748
  eax - SF_DEBUG (69)
3747
  eax - SF_DEBUG (69)
3749
  ebx - SSF_SET_REGISTERS (2)
3748
  ebx - SSF_SET_REGISTERS (2)
3750
======================================================================
3749
======================================================================
3751
===== Function 69, subfunction 3 - detach from debugged process. =====
3750
===== Function 69, subfunction 3 - detach from debugged process. =====
3752
======================================================================
3751
======================================================================
3753
Parameters:
3752
Parameters:
3754
  * eax = 69 - function number
3753
  * eax = 69 - function number
3755
  * ebx = 3 - subfunction number
3754
  * ebx = 3 - subfunction number
3756
  * ecx = identifier
3755
  * ecx = identifier
3757
Returned value:
3756
Returned value:
3758
  * function does not return value
3757
  * function does not return value
3759
Remarks:
3758
Remarks:
3760
  * If the process was suspended, it resumes execution.
3759
  * If the process was suspended, it resumes execution.
3761
 
3760
 
3762
---------------------- Constants for registers: ----------------------
3761
---------------------- Constants for registers: ----------------------
3763
  eax - SF_DEBUG (69)
3762
  eax - SF_DEBUG (69)
3764
  ebx - SSF_DETACH (3)
3763
  ebx - SSF_DETACH (3)
3765
======================================================================
3764
======================================================================
3766
======== Function 69, subfunction 4 - suspend debugged thread. =======
3765
======== Function 69, subfunction 4 - suspend debugged thread. =======
3767
======================================================================
3766
======================================================================
3768
Parameters:
3767
Parameters:
3769
  * eax = 69 - function number
3768
  * eax = 69 - function number
3770
  * ebx = 4 - subfunction number
3769
  * ebx = 4 - subfunction number
3771
  * ecx = thread identifier
3770
  * ecx = thread identifier
3772
Returned value:
3771
Returned value:
3773
  * function does not return value
3772
  * function does not return value
3774
Remarks:
3773
Remarks:
3775
  * Process must be loaded for debugging (as is shown in
3774
  * Process must be loaded for debugging (as is shown in
3776
    general description).
3775
    general description).
3777
 
3776
 
3778
---------------------- Constants for registers: ----------------------
3777
---------------------- Constants for registers: ----------------------
3779
  eax - SF_DEBUG (69)
3778
  eax - SF_DEBUG (69)
3780
  ebx - SSF_SUSPEND (4)
3779
  ebx - SSF_SUSPEND (4)
3781
======================================================================
3780
======================================================================
3782
======== Function 69, subfunction 5 - resume debugged thread. ========
3781
======== Function 69, subfunction 5 - resume debugged thread. ========
3783
======================================================================
3782
======================================================================
3784
Parameters:
3783
Parameters:
3785
  * eax = 69 - function number
3784
  * eax = 69 - function number
3786
  * ebx = 5 - subfunction number
3785
  * ebx = 5 - subfunction number
3787
  * ecx = thread identifier
3786
  * ecx = thread identifier
3788
Returned value:
3787
Returned value:
3789
  * function does not return value
3788
  * function does not return value
3790
Remarks:
3789
Remarks:
3791
  * Process must be loaded for debugging (as is shown in
3790
  * Process must be loaded for debugging (as is shown in
3792
    general description).
3791
    general description).
3793
 
3792
 
3794
---------------------- Constants for registers: ----------------------
3793
---------------------- Constants for registers: ----------------------
3795
  eax - SF_DEBUG (69)
3794
  eax - SF_DEBUG (69)
3796
  ebx - SSF_RESUME (5)
3795
  ebx - SSF_RESUME (5)
3797
======================================================================
3796
======================================================================
3798
= Fucntion 69, subfunction 6 - read from memory of debugged process. =
3797
= Fucntion 69, subfunction 6 - read from memory of debugged process. =
3799
======================================================================
3798
======================================================================
3800
Parameters:
3799
Parameters:
3801
  * eax = 69 - function number
3800
  * eax = 69 - function number
3802
  * ebx = 6 - subfunction number
3801
  * ebx = 6 - subfunction number
3803
  * ecx = identifier
3802
  * ecx = identifier
3804
  * edx = number of bytes to read
3803
  * edx = number of bytes to read
3805
  * esi = address in the memory of debugged process
3804
  * esi = address in the memory of debugged process
3806
  * edi = pointer to buffer for data
3805
  * edi = pointer to buffer for data
3807
Returned value:
3806
Returned value:
3808
  * eax = -1 at an error (invalid PID or buffer)
3807
  * eax = -1 at an error (invalid PID or buffer)
3809
  * otherwise eax = number of read bytes (possibly, 0,
3808
  * otherwise eax = number of read bytes (possibly, 0,
3810
    if esi is too large)
3809
    if esi is too large)
3811
Remarks:
3810
Remarks:
3812
  * Process must be loaded for debugging (as is shown in
3811
  * Process must be loaded for debugging (as is shown in
3813
    general description).
3812
    general description).
3814
 
3813
 
3815
---------------------- Constants for registers: ----------------------
3814
---------------------- Constants for registers: ----------------------
3816
  eax - SF_DEBUG (69)
3815
  eax - SF_DEBUG (69)
3817
  ebx - SSF_READ_MEMORY (6)
3816
  ebx - SSF_READ_MEMORY (6)
3818
======================================================================
3817
======================================================================
3819
== Function 69, subfunction 7 - write to memory of debugged process. =
3818
== Function 69, subfunction 7 - write to memory of debugged process. =
3820
======================================================================
3819
======================================================================
3821
Parameters:
3820
Parameters:
3822
  * eax = 69 - function number
3821
  * eax = 69 - function number
3823
  * ebx = 7 - subfunction number
3822
  * ebx = 7 - subfunction number
3824
  * ecx = identifier
3823
  * ecx = identifier
3825
  * edx = number of bytes to write
3824
  * edx = number of bytes to write
3826
  * esi = address of memory in debugged process
3825
  * esi = address of memory in debugged process
3827
  * edi = pointer to data
3826
  * edi = pointer to data
3828
Returned value:
3827
Returned value:
3829
  * eax = -1 at an error (invalid PID or buffer)
3828
  * eax = -1 at an error (invalid PID or buffer)
3830
  * otherwise eax = number of written bytes (possibly, 0,
3829
  * otherwise eax = number of written bytes (possibly, 0,
3831
    if esi is too large)
3830
    if esi is too large)
3832
Remarks:
3831
Remarks:
3833
  * Process must be loaded for debugging (as is shown in
3832
  * Process must be loaded for debugging (as is shown in
3834
    general description).
3833
    general description).
3835
 
3834
 
3836
---------------------- Constants for registers: ----------------------
3835
---------------------- Constants for registers: ----------------------
3837
  eax - SF_DEBUG (69)
3836
  eax - SF_DEBUG (69)
3838
  ebx - SSF_WRITE_MEMORY (7)
3837
  ebx - SSF_WRITE_MEMORY (7)
3839
======================================================================
3838
======================================================================
3840
======= Function 69, subfunction 8 - terminate debugged thread. ======
3839
======= Function 69, subfunction 8 - terminate debugged thread. ======
3841
======================================================================
3840
======================================================================
3842
Parameters:
3841
Parameters:
3843
  * eax = 69 - function number
3842
  * eax = 69 - function number
3844
  * ebx = 8 - subfunction number
3843
  * ebx = 8 - subfunction number
3845
  * ecx = identifier
3844
  * ecx = identifier
3846
Returned value:
3845
Returned value:
3847
  * function does not return value
3846
  * function does not return value
3848
Remarks:
3847
Remarks:
3849
  * Process must be loaded for debugging (as is shown in
3848
  * Process must be loaded for debugging (as is shown in
3850
    general description).
3849
    general description).
3851
  * The function is similar to subfunction 2 of function 18
3850
  * The function is similar to subfunction 2 of function 18
3852
    with two differences: it requires first remark and
3851
    with two differences: it requires first remark and
3853
    accepts PID rather than slot number.
3852
    accepts PID rather than slot number.
3854
 
3853
 
3855
---------------------- Constants for registers: ----------------------
3854
---------------------- Constants for registers: ----------------------
3856
  eax - SF_DEBUG (69)
3855
  eax - SF_DEBUG (69)
3857
  ebx - SSF_TERMINATE (8)
3856
  ebx - SSF_TERMINATE (8)
3858
======================================================================
3857
======================================================================
3859
===== Function 69, subfunction 9 - set/clear hardware breakpoint. ====
3858
===== Function 69, subfunction 9 - set/clear hardware breakpoint. ====
3860
======================================================================
3859
======================================================================
3861
Parameters:
3860
Parameters:
3862
  * eax = 69 - function number
3861
  * eax = 69 - function number
3863
  * ebx = 9 - subfunction number
3862
  * ebx = 9 - subfunction number
3864
  * ecx = thread identifier
3863
  * ecx = thread identifier
3865
  * dl = index of breakpoint, from 0 to 3 inclusively
3864
  * dl = index of breakpoint, from 0 to 3 inclusively
3866
  * dh = flags:
3865
  * dh = flags:
3867
    * if high bit is cleared - set breakpoint:
3866
    * if high bit is cleared - set breakpoint:
3868
      * bits 0-1 - condition:
3867
      * bits 0-1 - condition:
3869
        * 00 = breakpoint on execution
3868
        * 00 = breakpoint on execution
3870
        * 01 = breakpoint on read
3869
        * 01 = breakpoint on read
3871
        * 11 = breakpoint on read/write
3870
        * 11 = breakpoint on read/write
3872
      * bits 2-3 - length; for breakpoints on exception it must be
3871
      * bits 2-3 - length; for breakpoints on exception it must be
3873
        00, otherwise one of
3872
        00, otherwise one of
3874
        * 00 = byte
3873
        * 00 = byte
3875
        * 01 = word
3874
        * 01 = word
3876
        * 11 = dword
3875
        * 11 = dword
3877
      * esi = breakpoint address; must be aligned according to
3876
      * esi = breakpoint address; must be aligned according to
3878
        the length (i.e. must be even for word breakpoints,
3877
        the length (i.e. must be even for word breakpoints,
3879
        divisible by 4 for dword)
3878
        divisible by 4 for dword)
3880
    * if high bit is set - clear breakpoint
3879
    * if high bit is set - clear breakpoint
3881
Returned value:
3880
Returned value:
3882
  * eax = 0 - success
3881
  * eax = 0 - success
3883
  * eax = 1 - error in the input data
3882
  * eax = 1 - error in the input data
3884
  * eax = 2 - (reserved, is never returned in the current
3883
  * eax = 2 - (reserved, is never returned in the current
3885
    implementation) a global breakpoint with that index is already set
3884
    implementation) a global breakpoint with that index is already set
3886
Remarks:
3885
Remarks:
3887
  * Process must be loaded for debugging (as is shown in
3886
  * Process must be loaded for debugging (as is shown in
3888
    general description).
3887
    general description).
3889
  * Hardware breakpoints are implemented through DRx-registers of
3888
  * Hardware breakpoints are implemented through DRx-registers of
3890
    the processor, all limitations results from this.
3889
    the processor, all limitations results from this.
3891
  * The function can reinstall the breakpoint, previously set
3890
  * The function can reinstall the breakpoint, previously set
3892
    by it (and it does not inform on this).
3891
    by it (and it does not inform on this).
3893
    Carry on the list of set breakpoints in the debugger.
3892
    Carry on the list of set breakpoints in the debugger.
3894
  * Breakpoints generate debug exception #DB, on which the system
3893
  * Breakpoints generate debug exception #DB, on which the system
3895
    notifies debugger.
3894
    notifies debugger.
3896
  * Breakpoints on write and read/write act after
3895
  * Breakpoints on write and read/write act after
3897
    execution of the caused it instruction.
3896
    execution of the caused it instruction.
3898
 
3897
 
3899
---------------------- Constants for registers: ----------------------
3898
---------------------- Constants for registers: ----------------------
3900
  eax - SF_DEBUG (69)
3899
  eax - SF_DEBUG (69)
3901
  ebx - SSF_DEFINE_BREAKPOINT (9)
3900
  ebx - SSF_DEFINE_BREAKPOINT (9)
3902
======================================================================
3901
======================================================================
3903
==== Function 70 - work with file system with long names support. ====
3902
==== Function 70 - work with file system with long names support. ====
3904
======================================================================
3903
======================================================================
3905
Parameters:
3904
Parameters:
3906
  * eax = 70
3905
  * eax = 70
3907
  * ebx = pointer to the information structure
3906
  * ebx = pointer to the information structure
3908
Returned value:
3907
Returned value:
3909
  * eax = 0 - success; otherwise file system error code
3908
  * eax = 0 - success; otherwise file system error code
3910
  * some subfunctions return value in other registers too
3909
  * some subfunctions return value in other registers too
3911
General format of the information structure:
3910
General format of the information structure:
3912
  * +0: dword: subfunction number
3911
  * +0: dword: subfunction number
3913
  * +4: dword: offset in file or folder
3912
  * +4: dword: offset in file or folder
3914
  * +8: dword: higher part of offset or flags
3913
  * +8: dword: higher part of offset or flags
3915
  * +12 = +0xC: dword: size of data
3914
  * +12 = +0xC: dword: size of data
3916
  * +16 = +0x10: dword: pointer to data
3915
  * +16 = +0x10: dword: pointer to data
3917
  * +20 = +0x14: ?: path - zero terminated string
3916
  * +20 = +0x14: ?: path - zero terminated string
3918
  or
3917
  or
3919
  * +20 = +0x14: byte: 0
3918
  * +20 = +0x14: byte: 0
3920
  * +21 = +0x15: dword: pointer to string
3919
  * +21 = +0x15: dword: pointer to string
3921
Case sensitivity depends on filesystem.
3920
Case sensitivity depends on filesystem.
3922
If a path not begins with '/', it is considered a relative.
3921
If a path not begins with '/', it is considered a relative.
3923
To get or set the current folder, use the sysfunction 30.
3922
To get or set the current folder, use the sysfunction 30.
3924
'../' in the path means a lift by one folder relatively current folder.
3923
'../' in the path means a lift by one folder relatively current folder.
3925
To set the encoding, put at the start of the string a byte with next values:
3924
To set the encoding, put at the start of the string a byte with next values:
3926
  * 1 = cp866
3925
  * 1 = cp866
3927
  * 2 = UTF-16LE
3926
  * 2 = UTF-16LE
3928
  * 3 = UTF-8
3927
  * 3 = UTF-8
3929
  otherwise will be used cp866. In an absolute path
3928
  otherwise will be used cp866. In an absolute path
3930
  you may put this byte after the '/' or put an additional '/' before it.
3929
  you may put this byte after the '/' or put an additional '/' before it.
3931
  Also, you may use the sysfunction 80.
3930
  Also, you may use the sysfunction 80.
3932
Format of an absolute path:
3931
Format of an absolute path:
3933
  /base/number/dir1/dir2/.../dirn/file,
3932
  /base/number/dir1/dir2/.../dirn/file,
3934
where base/number identifies device, on which file is located:
3933
where base/number identifies device, on which file is located:
3935
  * RD/1 = ramdisk
3934
  * RD/1 = ramdisk
3936
  * FD/1 = first floppy drive,
3935
  * FD/1 = first floppy drive,
3937
    FD/2 = second floppy drive
3936
    FD/2 = second floppy drive
3938
  * HD0/x, HD1/x, HD2/x, HD3/x = hard drives accordingly on
3937
  * HD0/x, HD1/x, HD2/x, HD3/x = hard drives accordingly on
3939
    IDE0 (Primary Master), IDE1 (Primary Slave),
3938
    IDE0 (Primary Master), IDE1 (Primary Slave),
3940
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
3939
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
3941
    x - partition number on the selected hard drive, starts from 1
3940
    x - partition number on the selected hard drive, starts from 1
3942
  * CD0/1, CD1/1, CD2/1, CD3/1 = same for cd
3941
  * CD0/1, CD1/1, CD2/1, CD3/1 = same for cd
3943
  * SYS = system folder (encoding inaffected key),
3942
  * SYS = system folder (encoding inaffected key),
3944
    second key may be set by sysfunction 30.3.
3943
    second key may be set by sysfunction 30.3.
3945
Examples:
3944
Examples:
3946
  * '/sys/example.asm',0
3945
  * '/sys/example.asm',0
3947
  * '/rd/1/example.asm',0
3946
  * '/rd/1/example.asm',0
3948
  * '/HD0/1/folder/file.txt',0
3947
  * '/HD0/1/folder/file.txt',0
3949
  * '/hd2/2/pics/tanzania.bmp',0
3948
  * '/hd2/2/pics/tanzania.bmp',0
3950
  * 2,'/',0,'sys','/',0,'F',0,'I',0,'L',0,'E',0,0,0
3949
  * 2,'/',0,'sys','/',0,'F',0,'I',0,'L',0,'E',0,0,0
3951
 
3950
 
3952
Available subfunctions:
3951
Available subfunctions:
3953
  * subfunction 0 - read file
3952
  * subfunction 0 - read file
3954
  * subfunction 1 - read folder
3953
  * subfunction 1 - read folder
3955
  * subfunction 2 - create/rewrite file
3954
  * subfunction 2 - create/rewrite file
3956
  * subfunction 3 - write to existing file
3955
  * subfunction 3 - write to existing file
3957
  * subfunction 4 - set file size
3956
  * subfunction 4 - set file size
3958
  * subfunction 5 - get attributes of file/folder
3957
  * subfunction 5 - get attributes of file/folder
3959
  * subfunction 6 - set attributes of file/folder
3958
  * subfunction 6 - set attributes of file/folder
3960
  * subfunction 7 - start application
3959
  * subfunction 7 - start application
3961
  * subfunction 8 - delete file/folder
3960
  * subfunction 8 - delete file/folder
3962
  * subfunction 9 - create folder
3961
  * subfunction 9 - create folder
3963
For CD-drives due to hardware limitations only subfunctions
3962
For CD-drives due to hardware limitations only subfunctions
3964
0,1,5 and 7 are available, other subfunctions return error
3963
0,1,5 and 7 are available, other subfunctions return error
3965
with code 2.
3964
with code 2.
3966
At the first call of subfunctions 0,1,5,7 to ATAPI devices
3965
At the first call of subfunctions 0,1,5,7 to ATAPI devices
3967
(CD and DVD) the manual control of tray is locked due to caching
3966
(CD and DVD) the manual control of tray is locked due to caching
3968
drive data. Unlocking is made when subfunction 4 of function 24
3967
drive data. Unlocking is made when subfunction 4 of function 24
3969
is called for corresponding device.
3968
is called for corresponding device.
3970
 
3969
 
3971
---------------------- Constants for registers: ----------------------
3970
---------------------- Constants for registers: ----------------------
3972
  eax - SF_FILE (70)
3971
  eax - SF_FILE (70)
3973
 [ebx] - SSF_READ_FILE (0), SSF_READ_FOLDER (1), SSF_CREATE_FILE (2),
3972
 [ebx] - SSF_READ_FILE (0), SSF_READ_FOLDER (1), SSF_CREATE_FILE (2),
3974
    SSF_WRITE_FILE (3), SSF_SET_END (4), SSF_GET_INFO (5),
3973
    SSF_WRITE_FILE (3), SSF_SET_END (4), SSF_GET_INFO (5),
3975
    SSF_SET_INFO (6), SSF_START_APP (7), SSF_DELETE (8),
3974
    SSF_SET_INFO (6), SSF_START_APP (7), SSF_DELETE (8),
3976
    SSF_CREATE_FOLDER (9)
3975
    SSF_CREATE_FOLDER (9)
3977
======================================================================
3976
======================================================================
3978
=== Function 70, subfunction 0 - read file with long names support. ==
3977
=== Function 70, subfunction 0 - read file with long names support. ==
3979
======================================================================
3978
======================================================================
3980
Parameters:
3979
Parameters:
3981
  * eax = 70 - function number
3980
  * eax = 70 - function number
3982
  * ebx = pointer to the information structure
3981
  * ebx = pointer to the information structure
3983
Format of the information structure:
3982
Format of the information structure:
3984
  * +0: dword: 0 = subfunction number
3983
  * +0: dword: 0 = subfunction number
3985
  * +4: dword: file offset (in bytes)
3984
  * +4: dword: file offset (in bytes)
3986
  * +8: dword: 0 (reserved for high dword of offset)
3985
  * +8: dword: 0 (reserved for high dword of offset)
3987
  * +12 = +0xC: dword: number of bytes to read
3986
  * +12 = +0xC: dword: number of bytes to read
3988
  * +16 = +0x10: dword: pointer to buffer for data
3987
  * +16 = +0x10: dword: pointer to buffer for data
3989
  * +20 = +0x14: path, general rules of names forming
3988
  * +20 = +0x14: path, general rules of names forming
3990
Returned value:
3989
Returned value:
3991
  * eax = 0 - success, otherwise file system error code
3990
  * eax = 0 - success, otherwise file system error code
3992
  * ebx = number of bytes read
3991
  * ebx = number of bytes read
3993
Remarks:
3992
Remarks:
3994
  * If file was ended before last requested block was read,
3993
  * If file was ended before last requested block was read,
3995
    the function will read as many as it can, and after that return
3994
    the function will read as many as it can, and after that return
3996
    eax=6 (EOF).
3995
    eax=6 (EOF).
3997
  * The function does not allow to read folder (returns eax=10,
3996
  * The function does not allow to read folder (returns eax=10,
3998
    access denied).
3997
    access denied).
3999
 
3998
 
4000
---------------------- Constants for registers: ----------------------
3999
---------------------- Constants for registers: ----------------------
4001
  eax - SF_FILE (70)
4000
  eax - SF_FILE (70)
4002
 [ebx] - SSF_READ_FILE (0)
4001
 [ebx] - SSF_READ_FILE (0)
4003
======================================================================
4002
======================================================================
4004
== Function 70, subfunction 1 - read folder with long names support. =
4003
== Function 70, subfunction 1 - read folder with long names support. =
4005
======================================================================
4004
======================================================================
4006
Parameters:
4005
Parameters:
4007
  * eax = 70 - function number
4006
  * eax = 70 - function number
4008
  * ebx = pointer to the information structure
4007
  * ebx = pointer to the information structure
4009
Format of the information structure:
4008
Format of the information structure:
4010
  * +0: dword: 1 = subfunction number
4009
  * +0: dword: 1 = subfunction number
4011
  * +4: dword: index of starting block (beginning from 0)
4010
  * +4: dword: index of starting block (beginning from 0)
4012
  * +8: dword: names encoding:
4011
  * +8: dword: names encoding:
4013
    0 = default
4012
    0 = default
4014
    1 = cp866
4013
    1 = cp866
4015
    2 = UTF-16LE
4014
    2 = UTF-16LE
4016
    3 = UTF-8
4015
    3 = UTF-8
4017
  * +12 = +0xC: dword: number of blocks to read
4016
  * +12 = +0xC: dword: number of blocks to read
4018
  * +16 = +0x10: dword: pointer to buffer for data
4017
  * +16 = +0x10: dword: pointer to buffer for data
4019
  * +20 = +0x14: path, general rules of names forming
4018
  * +20 = +0x14: path, general rules of names forming
4020
Returned value:
4019
Returned value:
4021
  * eax = 0 - success, otherwise file system error code
4020
  * eax = 0 - success, otherwise file system error code
4022
  * ebx = number of file information blocks, written to the buffer
4021
  * ebx = number of file information blocks, written to the buffer
4023
Structure of the buffer:
4022
Structure of the buffer:
4024
  * header (32 bytes)
4023
  * header (32 bytes)
4025
  * block with information on file 1
4024
  * block with information on file 1
4026
  * block with information on file 2
4025
  * block with information on file 2
4027
  * ...
4026
  * ...
4028
Structure of header:
4027
Structure of header:
4029
  * +0: dword: version of structure (current is 1)
4028
  * +0: dword: version of structure (current is 1)
4030
  * +4: dword: number of placed blocks; is not greater than requested
4029
  * +4: dword: number of placed blocks; is not greater than requested
4031
    in the field +12 of information structure; can be less, if
4030
    in the field +12 of information structure; can be less, if
4032
    there are no more files in folder (the same as in ebx)
4031
    there are no more files in folder (the same as in ebx)
4033
  * +8: dword: total number of files in folder
4032
  * +8: dword: total number of files in folder
4034
  * +12 = +0xC: 20*byte: reserved (zeroed)
4033
  * +12 = +0xC: 20*byte: reserved (zeroed)
4035
Structure of block of data for folder entry (BDFE):
4034
Structure of block of data for folder entry (BDFE):
4036
  * +0: dword: attributes of file:
4035
  * +0: dword: attributes of file:
4037
    * bit 0 (mask 1): file is read-only
4036
    * bit 0 (mask 1): file is read-only
4038
    * bit 1 (mask 2): file is hidden
4037
    * bit 1 (mask 2): file is hidden
4039
    * bit 2 (mask 4): file is system
4038
    * bit 2 (mask 4): file is system
4040
    * bit 3 (mask 8): this is the volume label (using by subfunction 5)
4039
    * bit 3 (mask 8): this is the volume label (using by subfunction 5)
4041
    * bit 4 (mask 0x10): this is a folder
4040
    * bit 4 (mask 0x10): this is a folder
4042
    * bit 5 (mask 0x20): file was not archived - many archivation
4041
    * bit 5 (mask 0x20): file was not archived - many archivation
4043
      programs have an option to archive only files with this bit set,
4042
      programs have an option to archive only files with this bit set,
4044
      and after archiving this bit is cleared - it can be useful
4043
      and after archiving this bit is cleared - it can be useful
4045
      for automatically creating of backup-archives as at writing
4044
      for automatically creating of backup-archives as at writing
4046
      this bit is usually set
4045
      this bit is usually set
4047
  * +4: dword: encoding, equals to field +8 in the information structure
4046
  * +4: dword: encoding, equals to field +8 in the information structure
4048
  * +8: 4*byte: time of file creation
4047
  * +8: 4*byte: time of file creation
4049
  * +12 = +0xC: 4*byte: date of file creation
4048
  * +12 = +0xC: 4*byte: date of file creation
4050
  * +16 = +0x10: 4*byte: time of last access (read or write)
4049
  * +16 = +0x10: 4*byte: time of last access (read or write)
4051
  * +20 = +0x14: 4*byte: date of last access
4050
  * +20 = +0x14: 4*byte: date of last access
4052
  * +24 = +0x18: 4*byte: time of last modification
4051
  * +24 = +0x18: 4*byte: time of last modification
4053
  * +28 = +0x1C: 4*byte: date of last modification
4052
  * +28 = +0x1C: 4*byte: date of last modification
4054
  * +32 = +0x20: qword: file size in bytes (up to 16777216 Tb)
4053
  * +32 = +0x20: qword: file size in bytes (up to 16777216 Tb)
4055
  * +40 = +0x28: name, 264 bytes in cp866, otherwise - 520 bytes.
4054
  * +40 = +0x28: name, 264 bytes in cp866, otherwise - 520 bytes.
4056
Time format:
4055
Time format:
4057
  * +0: byte: seconds
4056
  * +0: byte: seconds
4058
  * +1: byte: minutes
4057
  * +1: byte: minutes
4059
  * +2: byte: hours
4058
  * +2: byte: hours
4060
  * +3: byte: reserved (0)
4059
  * +3: byte: reserved (0)
4061
  * for example, 23.59.59 is written as (in hex) 3B 3B 17 00
4060
  * for example, 23.59.59 is written as (in hex) 3B 3B 17 00
4062
Date format:
4061
Date format:
4063
  * +0: byte: day
4062
  * +0: byte: day
4064
  * +1: byte: month
4063
  * +1: byte: month
4065
  * +2: word: year
4064
  * +2: word: year
4066
  * for example, 25.11.1979 is written as (in hex) 19 0B BB 07
4065
  * for example, 25.11.1979 is written as (in hex) 19 0B BB 07
4067
Remarks:
4066
Remarks:
4068
  * If BDFE contains cp866 name, the length of BDFE is 304 bytes,
4067
  * If BDFE contains cp866 name, the length of BDFE is 304 bytes,
4069
    otherwise - 560 bytes.
4068
    otherwise - 560 bytes.
4070
  * Name string is zero terminated, further data contain garbage.
4069
  * Name string is zero terminated, further data contain garbage.
4071
  * If files in folder were ended before requested number was read,
4070
  * If files in folder were ended before requested number was read,
4072
    the function will read as many as it can, and after that return
4071
    the function will read as many as it can, and after that return
4073
    eax=6 (EOF).
4072
    eax=6 (EOF).
4074
  * Any folder on the disk, except for root, contains two special
4073
  * Any folder on the disk, except for root, contains two special
4075
    entries "." and "..", identifying accordingly the folder itself
4074
    entries "." and "..", identifying accordingly the folder itself
4076
    and the parent folder.
4075
    and the parent folder.
4077
  * The function allows also to read virtual folders "/", "/rd",
4076
  * The function allows also to read virtual folders "/", "/rd",
4078
    "/fd", "/hd[n]", thus attributes of subfolders are set to 0x10,
4077
    "/fd", "/hd[n]", thus attributes of subfolders are set to 0x10,
4079
    and times and dates are zeroed. An alternative way to get the
4078
    and times and dates are zeroed. An alternative way to get the
4080
    equipment information - subfunction 11 of function 18.
4079
    equipment information - subfunction 11 of function 18.
4081
 
4080
 
4082
---------------------- Constants for registers: ----------------------
4081
---------------------- Constants for registers: ----------------------
4083
  eax - SF_FILE (70)
4082
  eax - SF_FILE (70)
4084
 [ebx] - SSF_READ_FOLDER (1)
4083
 [ebx] - SSF_READ_FOLDER (1)
4085
======================================================================
4084
======================================================================
4086
===================== Function 70, subfunction 2 =====================
4085
===================== Function 70, subfunction 2 =====================
4087
============ Create/rewrite file with long names support. ============
4086
============ Create/rewrite file with long names support. ============
4088
======================================================================
4087
======================================================================
4089
Parameters:
4088
Parameters:
4090
  * eax = 70 - function number
4089
  * eax = 70 - function number
4091
  * ebx = pointer to the information structure
4090
  * ebx = pointer to the information structure
4092
Format of the information structure:
4091
Format of the information structure:
4093
  * +0: dword: 2 = subfunction number
4092
  * +0: dword: 2 = subfunction number
4094
  * +4: dword: 0 (reserved)
4093
  * +4: dword: 0 (reserved)
4095
  * +8: dword: 0 (reserved)
4094
  * +8: dword: 0 (reserved)
4096
  * +12 = +0xC: dword: number of bytes to write
4095
  * +12 = +0xC: dword: number of bytes to write
4097
  * +16 = +0x10: dword: pointer to data
4096
  * +16 = +0x10: dword: pointer to data
4098
  * +20 = +0x14: path, general rules of names forming
4097
  * +20 = +0x14: path, general rules of names forming
4099
Returned value:
4098
Returned value:
4100
  * eax = 0 - success, otherwise file system error code
4099
  * eax = 0 - success, otherwise file system error code
4101
  * ebx = number of written bytes (possibly 0)
4100
  * ebx = number of written bytes (possibly 0)
4102
Remarks:
4101
Remarks:
4103
  * If a file with given name did not exist, it is created;
4102
  * If a file with given name did not exist, it is created;
4104
    if it existed, it is rewritten.
4103
    if it existed, it is rewritten.
4105
  * If there is not enough free space on disk, the function will
4104
  * If there is not enough free space on disk, the function will
4106
    write as many as can and then return error code 8.
4105
    write as many as can and then return error code 8.
4107
  * The function is not supported for CD (returns error code 2).
4106
  * The function is not supported for CD (returns error code 2).
4108
 
4107
 
4109
---------------------- Constants for registers: ----------------------
4108
---------------------- Constants for registers: ----------------------
4110
  eax - SF_FILE (70)
4109
  eax - SF_FILE (70)
4111
 [ebx] - SSF_CREATE_FILE (2)
4110
 [ebx] - SSF_CREATE_FILE (2)
4112
======================================================================
4111
======================================================================
4113
===================== Function 70, subfunction 3 =====================
4112
===================== Function 70, subfunction 3 =====================
4114
=========== Write to existing file with long names support. ==========
4113
=========== Write to existing file with long names support. ==========
4115
======================================================================
4114
======================================================================
4116
Parameters:
4115
Parameters:
4117
  * eax = 70 - function number
4116
  * eax = 70 - function number
4118
  * ebx = pointer to the information structure
4117
  * ebx = pointer to the information structure
4119
Format of the information structure:
4118
Format of the information structure:
4120
  * +0: dword: 3 = subfunction number
4119
  * +0: dword: 3 = subfunction number
4121
  * +4: dword: file offset (in bytes)
4120
  * +4: dword: file offset (in bytes)
4122
  * +8: dword: high dword of offset (must be 0 for FAT)
4121
  * +8: dword: high dword of offset (must be 0 for FAT)
4123
  * +12 = +0xC: dword: number of bytes to write
4122
  * +12 = +0xC: dword: number of bytes to write
4124
  * +16 = +0x10: dword: pointer to data
4123
  * +16 = +0x10: dword: pointer to data
4125
  * +20 = +0x14: path, general rules of names forming
4124
  * +20 = +0x14: path, general rules of names forming
4126
Returned value:
4125
Returned value:
4127
  * eax = 0 - success, otherwise file system error code
4126
  * eax = 0 - success, otherwise file system error code
4128
  * ebx = number of written bytes (possibly 0)
4127
  * ebx = number of written bytes (possibly 0)
4129
Remarks:
4128
Remarks:
4130
  * The file must already exist, otherwise function returns eax=5.
4129
  * The file must already exist, otherwise function returns eax=5.
4131
  * The only result of write 0 bytes is update in the file attributes
4130
  * The only result of write 0 bytes is update in the file attributes
4132
    date/time of modification and access to the current date/time.
4131
    date/time of modification and access to the current date/time.
4133
  * If beginning and/or ending position is greater than file size
4132
  * If beginning and/or ending position is greater than file size
4134
    (except for the previous case), the file is expanded to needed
4133
    (except for the previous case), the file is expanded to needed
4135
    size with zero characters.
4134
    size with zero characters.
4136
  * The function is not supported for CD (returns error code 2).
4135
  * The function is not supported for CD (returns error code 2).
4137
 
4136
 
4138
---------------------- Constants for registers: ----------------------
4137
---------------------- Constants for registers: ----------------------
4139
  eax - SF_FILE (70)
4138
  eax - SF_FILE (70)
4140
 [ebx] - SSF_WRITE_FILE (3)
4139
 [ebx] - SSF_WRITE_FILE (3)
4141
======================================================================
4140
======================================================================
4142
============ Function 70, subfunction 4 - set end of file. ===========
4141
============ Function 70, subfunction 4 - set end of file. ===========
4143
======================================================================
4142
======================================================================
4144
Parameters:
4143
Parameters:
4145
  * eax = 70 - function number
4144
  * eax = 70 - function number
4146
  * ebx = pointer to the information structure
4145
  * ebx = pointer to the information structure
4147
Format of the information structure:
4146
Format of the information structure:
4148
  * +0: dword: 4 = subfunction number
4147
  * +0: dword: 4 = subfunction number
4149
  * +4: dword: low dword of new file size
4148
  * +4: dword: low dword of new file size
4150
  * +8: dword: high dword of new file size (must be 0 for FAT)
4149
  * +8: dword: high dword of new file size (must be 0 for FAT)
4151
  * +12 = +0xC: dword: 0 (reserved)
4150
  * +12 = +0xC: dword: 0 (reserved)
4152
  * +16 = +0x10: dword: 0 (reserved)
4151
  * +16 = +0x10: dword: 0 (reserved)
4153
  * +20 = +0x14: path, general rules of names forming
4152
  * +20 = +0x14: path, general rules of names forming
4154
Returned value:
4153
Returned value:
4155
  * eax = 0 - success, otherwise file system error code
4154
  * eax = 0 - success, otherwise file system error code
4156
  * ebx destroyed
4155
  * ebx destroyed
4157
Remarks:
4156
Remarks:
4158
  * If new file size is less than old one, file will be truncated.
4157
  * If new file size is less than old one, file will be truncated.
4159
    If new size is greater than old one, file will be expanded, and if
4158
    If new size is greater than old one, file will be expanded, and if
4160
    size difference is up to 16 MB, new space will be cleared with 0.
4159
    size difference is up to 16 MB, new space will be cleared with 0.
4161
  * If there is not enough free space on disk for expansion, the
4160
  * If there is not enough free space on disk for expansion, the
4162
    function will expand to maximum possible size and then return
4161
    function will expand to maximum possible size and then return
4163
    error code 8.
4162
    error code 8.
4164
  * The function is not supported for CD (returns error code 2).
4163
  * The function is not supported for CD (returns error code 2).
4165
 
4164
 
4166
---------------------- Constants for registers: ----------------------
4165
---------------------- Constants for registers: ----------------------
4167
  eax - SF_FILE (70)
4166
  eax - SF_FILE (70)
4168
 [ebx] - SSF_SET_END (4)
4167
 [ebx] - SSF_SET_END (4)
4169
======================================================================
4168
======================================================================
4170
==== Function 70, subfunction 5 - get information on file/folder. ====
4169
==== Function 70, subfunction 5 - get information on file/folder. ====
4171
======================================================================
4170
======================================================================
4172
Parameters:
4171
Parameters:
4173
  * eax = 70 - function number
4172
  * eax = 70 - function number
4174
  * ebx = pointer to the information structure
4173
  * ebx = pointer to the information structure
4175
Format of the information structure:
4174
Format of the information structure:
4176
  * +0: dword: 5 = subfunction number
4175
  * +0: dword: 5 = subfunction number
4177
  * +4: dword: 0 (reserved)
4176
  * +4: dword: 0 (reserved)
4178
  * +8: dword: 0 or flags (for the root folder)
4177
  * +8: dword: 0 or flags (for the root folder)
4179
  * +12 = +0xC: dword: 0 (reserved)
4178
  * +12 = +0xC: dword: 0 (reserved)
4180
  * +16 = +0x10: dword: pointer to buffer for data (40 bytes)
4179
  * +16 = +0x10: dword: pointer to buffer for data (40 bytes)
4181
  * +20 = +0x14: path, general rules of names forming
4180
  * +20 = +0x14: path, general rules of names forming
4182
Returned value:
4181
Returned value:
4183
  * eax = 0 - success, otherwise file system error code
4182
  * eax = 0 - success, otherwise file system error code
4184
  * ebx destroyed
4183
  * ebx destroyed
4185
Information on file is returned in the BDFE format (block of data
4184
Information on file is returned in the BDFE format (block of data
4186
for folder entry), explained in the description of subfunction 1,
4185
for folder entry), explained in the description of subfunction 1,
4187
but without filename, except the root folder.
4186
but without filename, except the root folder.
4188
Remarks:
4187
Remarks:
4189
  * For the root folder returns the partition size,
4188
  * For the root folder returns the partition size,
4190
    and if encoding byte is non-zero, the volume label.
4189
    and if encoding byte is non-zero, the volume label.
4191
  * For the device returns only the size.
4190
  * For the device returns only the size.
4192
 
4191
 
4193
---------------------- Constants for registers: ----------------------
4192
---------------------- Constants for registers: ----------------------
4194
  eax - SF_FILE (70)
4193
  eax - SF_FILE (70)
4195
 [ebx] - SSF_GET_INFO (5)
4194
 [ebx] - SSF_GET_INFO (5)
4196
======================================================================
4195
======================================================================
4197
===== Function 70, subfunction 6 - set attributes of file/folder. ====
4196
===== Function 70, subfunction 6 - set attributes of file/folder. ====
4198
======================================================================
4197
======================================================================
4199
Parameters:
4198
Parameters:
4200
  * eax = 70 - function number
4199
  * eax = 70 - function number
4201
  * ebx = pointer to the information structure
4200
  * ebx = pointer to the information structure
4202
Format of the information structure:
4201
Format of the information structure:
4203
  * +0: dword: 6 = subfunction number
4202
  * +0: dword: 6 = subfunction number
4204
  * +4: dword: 0 (reserved)
4203
  * +4: dword: 0 (reserved)
4205
  * +8: dword: 0 (reserved)
4204
  * +8: dword: 0 (reserved)
4206
  * +12 = +0xC: dword: 0 (reserved)
4205
  * +12 = +0xC: dword: 0 (reserved)
4207
  * +16 = +0x10: dword: pointer to buffer with attributes (32 bytes)
4206
  * +16 = +0x10: dword: pointer to buffer with attributes (32 bytes)
4208
  * +20 = +0x14: path, general rules of names forming
4207
  * +20 = +0x14: path, general rules of names forming
4209
Returned value:
4208
Returned value:
4210
  * eax = 0 - success, otherwise file system error code
4209
  * eax = 0 - success, otherwise file system error code
4211
  * ebx destroyed
4210
  * ebx destroyed
4212
File attributes are first 32 bytes in BDFE (block of data
4211
File attributes are first 32 bytes in BDFE (block of data
4213
for folder entry), explained in the description of subfunction 1
4212
for folder entry), explained in the description of subfunction 1
4214
(that is, without name and size of file). Attribute
4213
(that is, without name and size of file). Attribute
4215
file/folder/volume label (bits 3,4 in dword +0) is not changed.
4214
file/folder/volume label (bits 3,4 in dword +0) is not changed.
4216
Byte +4 (name format) is ignored.
4215
Byte +4 (name format) is ignored.
4217
Remarks:
4216
Remarks:
4218
  * The function does not support virtual folders such as /, /rd and
4217
  * The function does not support virtual folders such as /, /rd and
4219
    root folders like /rd/1.
4218
    root folders like /rd/1.
4220
  * The function is not supported for CD (returns error code 2).
4219
  * The function is not supported for CD (returns error code 2).
4221
 
4220
 
4222
---------------------- Constants for registers: ----------------------
4221
---------------------- Constants for registers: ----------------------
4223
  eax - SF_FILE (70)
4222
  eax - SF_FILE (70)
4224
 [ebx] - SSF_SET_INFO (6)
4223
 [ebx] - SSF_SET_INFO (6)
4225
======================================================================
4224
======================================================================
4226
=========== Function 70, subfunction 7 - start application. ==========
4225
=========== Function 70, subfunction 7 - start application. ==========
4227
======================================================================
4226
======================================================================
4228
Parameters:
4227
Parameters:
4229
  * eax = 70 - function number
4228
  * eax = 70 - function number
4230
  * ebx = pointer to the information structure
4229
  * ebx = pointer to the information structure
4231
Format of the information structure:
4230
Format of the information structure:
4232
  * +0: dword: 7 = subfunction number
4231
  * +0: dword: 7 = subfunction number
4233
  * +4: dword: flags field:
4232
  * +4: dword: flags field:
4234
    * bit 0: start process as debugged
4233
    * bit 0: start process as debugged
4235
    * other bits are reserved and must be set to 0
4234
    * other bits are reserved and must be set to 0
4236
  * +8: dword: 0 or pointer to ASCIIZ-string with parameters
4235
  * +8: dword: 0 or pointer to ASCIIZ-string with parameters
4237
  * +12 = +0xC: dword: 0 (reserved)
4236
  * +12 = +0xC: dword: 0 (reserved)
4238
  * +16 = +0x10: dword: 0 (reserved)
4237
  * +16 = +0x10: dword: 0 (reserved)
4239
  * +20 = +0x14: path, general rules of names forming
4238
  * +20 = +0x14: path, general rules of names forming
4240
Returned value:
4239
Returned value:
4241
  * eax > 0 - program is loaded, eax contains PID
4240
  * eax > 0 - program is loaded, eax contains PID
4242
  * eax < 0 - an error has occured, -eax contains
4241
  * eax < 0 - an error has occured, -eax contains
4243
    file system error code
4242
    file system error code
4244
  * ebx destroyed
4243
  * ebx destroyed
4245
Remarks:
4244
Remarks:
4246
  * Command line must be terminated by the character with the code 0
4245
  * Command line must be terminated by the character with the code 0
4247
    (ASCIIZ-string); function takes into account either all characters
4246
    (ASCIIZ-string); function takes into account either all characters
4248
    up to terminating zero inclusively or first 256 character
4247
    up to terminating zero inclusively or first 256 character
4249
    regarding what is less.
4248
    regarding what is less.
4250
  * If the process is started as debugged, it is created in
4249
  * If the process is started as debugged, it is created in
4251
    the suspended state; to run use subfunction 5 of function 69.
4250
    the suspended state; to run use subfunction 5 of function 69.
4252
 
4251
 
4253
---------------------- Constants for registers: ----------------------
4252
---------------------- Constants for registers: ----------------------
4254
  eax - SF_FILE (70)
4253
  eax - SF_FILE (70)
4255
 [ebx] - SSF_START_APP (7)
4254
 [ebx] - SSF_START_APP (7)
4256
======================================================================
4255
======================================================================
4257
========== Function 70, subfunction 8 - delete file/folder. ==========
4256
========== Function 70, subfunction 8 - delete file/folder. ==========
4258
======================================================================
4257
======================================================================
4259
Parameters:
4258
Parameters:
4260
  * eax = 70 - function number
4259
  * eax = 70 - function number
4261
  * ebx = pointer to the information structure
4260
  * ebx = pointer to the information structure
4262
Format of the information structure:
4261
Format of the information structure:
4263
  * +0: dword: 8 = subfunction number
4262
  * +0: dword: 8 = subfunction number
4264
  * +4: dword: 0 (reserved)
4263
  * +4: dword: 0 (reserved)
4265
  * +8: dword: 0 (reserved)
4264
  * +8: dword: 0 (reserved)
4266
  * +12 = +0xC: dword: 0 (reserved)
4265
  * +12 = +0xC: dword: 0 (reserved)
4267
  * +16 = +0x10: dword: 0 (reserved)
4266
  * +16 = +0x10: dword: 0 (reserved)
4268
  * +20 = +0x14: path, general rules of names forming
4267
  * +20 = +0x14: path, general rules of names forming
4269
Returned value:
4268
Returned value:
4270
  * eax = 0 - success, otherwise file system error code
4269
  * eax = 0 - success, otherwise file system error code
4271
  * ebx destroyed
4270
  * ebx destroyed
4272
Remarks:
4271
Remarks:
4273
  * The function is not supported for CD (returns error code 2).
4272
  * The function is not supported for CD (returns error code 2).
4274
  * The function can delete only empty folders (attempt to delete
4273
  * The function can delete only empty folders (attempt to delete
4275
    nonempty folder results in error with code 10, "access denied").
4274
    nonempty folder results in error with code 10, "access denied").
4276
 
4275
 
4277
---------------------- Constants for registers: ----------------------
4276
---------------------- Constants for registers: ----------------------
4278
  eax - SF_FILE (70)
4277
  eax - SF_FILE (70)
4279
 [ebx] - SSF_DELETE (8)
4278
 [ebx] - SSF_DELETE (8)
4280
======================================================================
4279
======================================================================
4281
============= Function 70, subfunction 9 - create folder. ============
4280
============= Function 70, subfunction 9 - create folder. ============
4282
======================================================================
4281
======================================================================
4283
Parameters:
4282
Parameters:
4284
  * eax = 70 - function number
4283
  * eax = 70 - function number
4285
  * ebx = pointer to the information structure
4284
  * ebx = pointer to the information structure
4286
Format of the information structure:
4285
Format of the information structure:
4287
  * +0: dword: 9 = subfunction number
4286
  * +0: dword: 9 = subfunction number
4288
  * +4: dword: 0 (reserved)
4287
  * +4: dword: 0 (reserved)
4289
  * +8: dword: 0 (reserved)
4288
  * +8: dword: 0 (reserved)
4290
  * +12 = +0xC: dword: 0 (reserved)
4289
  * +12 = +0xC: dword: 0 (reserved)
4291
  * +16 = +0x10: dword: 0 (reserved)
4290
  * +16 = +0x10: dword: 0 (reserved)
4292
  * +20 = +0x14: path, general rules of names forming
4291
  * +20 = +0x14: path, general rules of names forming
4293
Returned value:
4292
Returned value:
4294
  * eax = 0 - success, otherwise file system error code
4293
  * eax = 0 - success, otherwise file system error code
4295
  * ebx destroyed
4294
  * ebx destroyed
4296
Remarks:
4295
Remarks:
4297
  * The function is not supported for CD (returns error code 2).
4296
  * The function is not supported for CD (returns error code 2).
4298
  * The parent folder must already exist.
4297
  * The parent folder must already exist.
4299
  * If target folder already exists, function returns success (eax=0).
4298
  * If target folder already exists, function returns success (eax=0).
4300
 
4299
 
4301
---------------------- Constants for registers: ----------------------
4300
---------------------- Constants for registers: ----------------------
4302
  eax - SF_FILE (70)
4301
  eax - SF_FILE (70)
4303
 [ebx] - SSF_CREATE_FOLDER (9)
4302
 [ebx] - SSF_CREATE_FOLDER (9)
4304
======================================================================
4303
======================================================================
4305
============= Function 70, subfunction 10 - rename/move. =============
4304
============= Function 70, subfunction 10 - rename/move. =============
4306
======================================================================
4305
======================================================================
4307
Parameters:
4306
Parameters:
4308
  * eax = 70 - function number
4307
  * eax = 70 - function number
4309
  * ebx = pointer to the information structure
4308
  * ebx = pointer to the information structure
4310
Format of the information structure:
4309
Format of the information structure:
4311
  * +0: dword: 10 = subfunction number
4310
  * +0: dword: 10 = subfunction number
4312
  * +4: dword: 0 (reserved)
4311
  * +4: dword: 0 (reserved)
4313
  * +8: dword: 0 (reserved)
4312
  * +8: dword: 0 (reserved)
4314
  * +12 = +0xC: dword: 0 (reserved)
4313
  * +12 = +0xC: dword: 0 (reserved)
4315
  * +16 = +0x10: dword: pointer to the new name/path string
4314
  * +16 = +0x10: dword: pointer to the new name/path string
4316
  * +20 = +0x14: path, general rules of names forming
4315
  * +20 = +0x14: path, general rules of names forming
4317
Returned value:
4316
Returned value:
4318
  * eax = 0 - success, otherwise file system error code
4317
  * eax = 0 - success, otherwise file system error code
4319
  * ebx destroyed
4318
  * ebx destroyed
4320
Remarks:
4319
Remarks:
4321
  * New path forming differs from general rules:
4320
  * New path forming differs from general rules:
4322
    relative path relates to the target's parent folder,
4321
    relative path relates to the target's parent folder,
4323
    absolute path relates to the partition's root folder.
4322
    absolute path relates to the partition's root folder.
4324
======================================================================
4323
======================================================================
4325
================== Function 71 - set window caption ==================
4324
================== Function 71 - set window caption ==================
4326
======================================================================
4325
======================================================================
4327
Parameters:
4326
Parameters:
4328
  * eax = 71 - function number
4327
  * eax = 71 - function number
4329
  * ebx = 1
4328
  * ebx = 1
4330
  * ecx = pointer to zero terminated string,
4329
  * ecx = pointer to zero terminated string,
4331
    the string may start with an encoding byte:
4330
    the string may start with an encoding byte:
4332
    1 = cp866
4331
    1 = cp866
4333
    2 = UTF-16LE
4332
    2 = UTF-16LE
4334
    3 = UTF-8
4333
    3 = UTF-8
4335
  or:
4334
  or:
4336
  * ebx = 2
4335
  * ebx = 2
4337
  * ecx = pointer to zero terminated string
4336
  * ecx = pointer to zero terminated string
4338
  * dl  = string encoding
4337
  * dl  = string encoding
4339
Returned value:
4338
Returned value:
4340
  * function does not return value
4339
  * function does not return value
4341
Remarks:
4340
Remarks:
4342
  * Pass NULL in ecx to remove caption.
4341
  * Pass NULL in ecx to remove caption.
4343
 
4342
 
4344
---------------------- Constants for registers: ----------------------
4343
---------------------- Constants for registers: ----------------------
4345
  eax - SF_SET_CAPTION (71)
4344
  eax - SF_SET_CAPTION (71)
4346
======================================================================
4345
======================================================================
4347
=============== Function 72 - send message to a window. ==============
4346
=============== Function 72 - send message to a window. ==============
4348
======================================================================
4347
======================================================================
4349
 
4348
 
4350
- Subfunction 1 - send message with parameter to the active window. --
4349
- Subfunction 1 - send message with parameter to the active window. --
4351
Parameters:
4350
Parameters:
4352
  * eax = 72 - function number
4351
  * eax = 72 - function number
4353
  * ebx = 1 - subfunction number
4352
  * ebx = 1 - subfunction number
4354
  * ecx = event code: 2 or 3
4353
  * ecx = event code: 2 or 3
4355
  * edx = parameter: key code for ecx=2, button identifier for ecx=3
4354
  * edx = parameter: key code for ecx=2, button identifier for ecx=3
4356
Returned value:
4355
Returned value:
4357
  * eax = 0 - success
4356
  * eax = 0 - success
4358
  * eax = 1 - buffer is full
4357
  * eax = 1 - buffer is full
4359
 
4358
 
4360
---------------------- Constants for registers: ----------------------
4359
---------------------- Constants for registers: ----------------------
4361
  eax - SF_SEND_MESSAGE (72)
4360
  eax - SF_SEND_MESSAGE (72)
4362
======================================================================
4361
======================================================================
4363
===================== Function 73 - blit bitmap  =====================
4362
===================== Function 73 - blit bitmap  =====================
4364
======================================================================
4363
======================================================================
4365
 
4364
 
4366
Parameters:
4365
Parameters:
4367
  * eax = 73 - function number
4366
  * eax = 73 - function number
4368
 
4367
 
4369
  * ebx = ROP and optional flags
4368
  * ebx = ROP and optional flags
4370
     31      30 29 28       6 5  4 3   0
4369
     31      30 29 28       6 5  4 3   0
4371
     [reserved][CR][reserved][T][B][ROP]
4370
     [reserved][CR][reserved][T][B][ROP]
4372
     ROP - raster operation code
4371
     ROP - raster operation code
4373
        0: Copy
4372
        0: Copy
4374
     1-15: reserved
4373
     1-15: reserved
4375
     B   - blit into the background surface
4374
     B   - blit into the background surface
4376
     T   - transparent blit
4375
     T   - transparent blit
4377
     CR  - blit client relative
4376
     CR  - blit client relative
4378
 
4377
 
4379
  * ecx = pointer to the function parameters
4378
  * ecx = pointer to the function parameters
4380
        destination offset and clipping
4379
        destination offset and clipping
4381
     +0 signed dword: destination rectangle X offset from the window
4380
     +0 signed dword: destination rectangle X offset from the window
4382
                      top-left corner
4381
                      top-left corner
4383
     +4 signed dword: destination rectangle Y offset from the window
4382
     +4 signed dword: destination rectangle Y offset from the window
4384
                      top-left corner
4383
                      top-left corner
4385
     +8 dword:        destination rectangle width
4384
     +8 dword:        destination rectangle width
4386
    +12 dword:        destination rectangle height
4385
    +12 dword:        destination rectangle height
4387
 
4386
 
4388
        source offset and clipping
4387
        source offset and clipping
4389
    +16 signed dword: source rectangle X offset from the bitmap
4388
    +16 signed dword: source rectangle X offset from the bitmap
4390
                      top-left corner
4389
                      top-left corner
4391
    +20 signed dword: source rectangle Y offset from the bitmap
4390
    +20 signed dword: source rectangle Y offset from the bitmap
4392
                      top-left corner
4391
                      top-left corner
4393
    +24 dword:        source rectangle width
4392
    +24 dword:        source rectangle width
4394
    +28 dword:        source rectangle height
4393
    +28 dword:        source rectangle height
4395
 
4394
 
4396
    +32: dword: bitmap data - must be 32bpp
4395
    +32: dword: bitmap data - must be 32bpp
4397
    +36: dword: size of the bitmap row in bytes
4396
    +36: dword: size of the bitmap row in bytes
4398
 
4397
 
4399
Returned value:
4398
Returned value:
4400
  * function does not return value
4399
  * function does not return value
4401
 
4400
 
4402
---------------------- Constants for registers: ----------------------
4401
---------------------- Constants for registers: ----------------------
4403
  eax - SF_BLITTER (73)
4402
  eax - SF_BLITTER (73)
4404
======================================================================
4403
======================================================================
4405
= Function 74, Subfunction 255, Get number of active network devices. =
4404
= Function 74, Subfunction 255, Get number of active network devices. =
4406
======================================================================
4405
======================================================================
4407
Parameters:
4406
Parameters:
4408
  * eax = 74 - function number
4407
  * eax = 74 - function number
4409
  * bl = 255 - subfunction number
4408
  * bl = 255 - subfunction number
4410
Returned value:
4409
Returned value:
4411
  * eax = number of active network devices
4410
  * eax = number of active network devices
4412
 
4411
 
4413
---------------------- Constants for registers: ----------------------
4412
---------------------- Constants for registers: ----------------------
4414
  eax - SF_NETWORK_GET (74)
4413
  eax - SF_NETWORK_GET (74)
4415
   bl - SSF_DEVICE_COUNT (255)
4414
   bl - SSF_DEVICE_COUNT (255)
4416
======================================================================
4415
======================================================================
4417
======== Function 74, Subfunction 0, Get network device type. ========
4416
======== Function 74, Subfunction 0, Get network device type. ========
4418
======================================================================
4417
======================================================================
4419
Parameters:
4418
Parameters:
4420
  * eax = 74 - function number
4419
  * eax = 74 - function number
4421
  * bl = 0 - subfunction number
4420
  * bl = 0 - subfunction number
4422
  * bh = device number
4421
  * bh = device number
4423
Returned value:
4422
Returned value:
4424
  * eax = device type number
4423
  * eax = device type number
4425
 
4424
 
4426
---------------------- Constants for registers: ----------------------
4425
---------------------- Constants for registers: ----------------------
4427
  eax - SF_NETWORK_GET (74)
4426
  eax - SF_NETWORK_GET (74)
4428
   bl - SSF_DEVICE_TYPE (0)
4427
   bl - SSF_DEVICE_TYPE (0)
4429
======================================================================
4428
======================================================================
4430
======== Function 74, Subfunction 1, Get network device name. ========
4429
======== Function 74, Subfunction 1, Get network device name. ========
4431
======================================================================
4430
======================================================================
4432
Parameters:
4431
Parameters:
4433
  * eax = 74 - function number
4432
  * eax = 74 - function number
4434
  * bl = 1 - subfunction number
4433
  * bl = 1 - subfunction number
4435
  * bh = device number
4434
  * bh = device number
4436
  * ecx = pointer to 64 byte buffer
4435
  * ecx = pointer to 64 byte buffer
4437
Returned value:
4436
Returned value:
4438
  * eax = -1 on error
4437
  * eax = -1 on error
4439
  * The network device name is written into the buffer, on success
4438
  * The network device name is written into the buffer, on success
4440
 
4439
 
4441
---------------------- Constants for registers: ----------------------
4440
---------------------- Constants for registers: ----------------------
4442
  eax - SF_NETWORK_GET (74)
4441
  eax - SF_NETWORK_GET (74)
4443
   bl - SSF_DEVICE_NAME (1)
4442
   bl - SSF_DEVICE_NAME (1)
4444
======================================================================
4443
======================================================================
4445
========= Function 74, Subfunction 2, Reset network device. ==========
4444
========= Function 74, Subfunction 2, Reset network device. ==========
4446
======================================================================
4445
======================================================================
4447
Parameters:
4446
Parameters:
4448
  * eax = 74 - function number
4447
  * eax = 74 - function number
4449
  * bl = 2 - subfunction number
4448
  * bl = 2 - subfunction number
4450
  * bh = device number
4449
  * bh = device number
4451
Returned value:
4450
Returned value:
4452
  * eax = -1 on error
4451
  * eax = -1 on error
4453
 
4452
 
4454
---------------------- Constants for registers: ----------------------
4453
---------------------- Constants for registers: ----------------------
4455
  eax - SF_NETWORK_GET (74)
4454
  eax - SF_NETWORK_GET (74)
4456
   bl - SSF_RESET_DEVICE (2)
4455
   bl - SSF_RESET_DEVICE (2)
4457
======================================================================
4456
======================================================================
4458
========== Function 74, Subfunction 3, Stop network device. ==========
4457
========== Function 74, Subfunction 3, Stop network device. ==========
4459
======================================================================
4458
======================================================================
4460
Parameters:
4459
Parameters:
4461
  * eax = 74 - function number
4460
  * eax = 74 - function number
4462
  * bl = 3 - subfunction number
4461
  * bl = 3 - subfunction number
4463
  * bh = device number
4462
  * bh = device number
4464
Returned value:
4463
Returned value:
4465
  * eax = -1 on error
4464
  * eax = -1 on error
4466
 
4465
 
4467
---------------------- Constants for registers: ----------------------
4466
---------------------- Constants for registers: ----------------------
4468
  eax - SF_NETWORK_GET (74)
4467
  eax - SF_NETWORK_GET (74)
4469
   bl - SSF_STOP_DEVICE (3)
4468
   bl - SSF_STOP_DEVICE (3)
4470
======================================================================
4469
======================================================================
4471
=========== Function 74, Subfunction 4, Get device pointer. ==========
4470
=========== Function 74, Subfunction 4, Get device pointer. ==========
4472
======================================================================
4471
======================================================================
4473
Parameters:
4472
Parameters:
4474
  * eax = 74 - function number
4473
  * eax = 74 - function number
4475
  * bl = 4 - subfunction number
4474
  * bl = 4 - subfunction number
4476
  * bh = device number
4475
  * bh = device number
4477
Returned value:
4476
Returned value:
4478
  * eax = device pointer, -1 on error
4477
  * eax = device pointer, -1 on error
4479
 
4478
 
4480
---------------------- Constants for registers: ----------------------
4479
---------------------- Constants for registers: ----------------------
4481
  eax - SF_NETWORK_GET (74)
4480
  eax - SF_NETWORK_GET (74)
4482
   bl - SSF_DEVICE_POINER (4)
4481
   bl - SSF_DEVICE_POINER (4)
4483
======================================================================
4482
======================================================================
4484
========= Function 74, Subfunction 6, Get packet TX counter. =========
4483
========= Function 74, Subfunction 6, Get packet TX counter. =========
4485
======================================================================
4484
======================================================================
4486
Parameters:
4485
Parameters:
4487
  * eax = 74 - function number
4486
  * eax = 74 - function number
4488
  * bl = 6 - subfunction number
4487
  * bl = 6 - subfunction number
4489
  * bh = device number
4488
  * bh = device number
4490
Returned value:
4489
Returned value:
4491
  * eax = Number of packets sent since device start, -1 on error
4490
  * eax = Number of packets sent since device start, -1 on error
4492
 
4491
 
4493
---------------------- Constants for registers: ----------------------
4492
---------------------- Constants for registers: ----------------------
4494
  eax - SF_NETWORK_GET (74)
4493
  eax - SF_NETWORK_GET (74)
4495
   bl - SSF_TX_PACKET_COUNT (6)
4494
   bl - SSF_TX_PACKET_COUNT (6)
4496
======================================================================
4495
======================================================================
4497
========= Function 74, Subfunction 7, Get packet RX counter. =========
4496
========= Function 74, Subfunction 7, Get packet RX counter. =========
4498
======================================================================
4497
======================================================================
4499
Parameters:
4498
Parameters:
4500
  * eax = 74 - function number
4499
  * eax = 74 - function number
4501
  * bl = 7 - subfunction number
4500
  * bl = 7 - subfunction number
4502
  * bh = device number
4501
  * bh = device number
4503
Returned value:
4502
Returned value:
4504
  * eax = Number of packets received since device start, -1 on error
4503
  * eax = Number of packets received since device start, -1 on error
4505
 
4504
 
4506
---------------------- Constants for registers: ----------------------
4505
---------------------- Constants for registers: ----------------------
4507
  eax - SF_NETWORK_GET (74)
4506
  eax - SF_NETWORK_GET (74)
4508
   bl - SSF_RX_PACKET_COUNT (7)
4507
   bl - SSF_RX_PACKET_COUNT (7)
4509
======================================================================
4508
======================================================================
4510
========== Function 74, Subfunction 8, Get TX byte counter. ==========
4509
========== Function 74, Subfunction 8, Get TX byte counter. ==========
4511
======================================================================
4510
======================================================================
4512
Parameters:
4511
Parameters:
4513
  * eax = 74 - function number
4512
  * eax = 74 - function number
4514
  * bl = 8 - subfunction number
4513
  * bl = 8 - subfunction number
4515
  * bh = device number
4514
  * bh = device number
4516
Returned value:
4515
Returned value:
4517
  * eax = Number of bytes sent since device start (lower dword)
4516
  * eax = Number of bytes sent since device start (lower dword)
4518
                  -1 on error
4517
                  -1 on error
4519
  * ebx = Number of bytes sent since device start (higher dword)
4518
  * ebx = Number of bytes sent since device start (higher dword)
4520
 
4519
 
4521
---------------------- Constants for registers: ----------------------
4520
---------------------- Constants for registers: ----------------------
4522
  eax - SF_NETWORK_GET (74)
4521
  eax - SF_NETWORK_GET (74)
4523
   bl - SSF_TX_BYTE_COUNT (8)
4522
   bl - SSF_TX_BYTE_COUNT (8)
4524
======================================================================
4523
======================================================================
4525
========== Function 74, Subfunction 9, Get RX byte counter. ==========
4524
========== Function 74, Subfunction 9, Get RX byte counter. ==========
4526
======================================================================
4525
======================================================================
4527
Parameters:
4526
Parameters:
4528
  * eax = 74 - function number
4527
  * eax = 74 - function number
4529
  * bl = 9 - subfunction number
4528
  * bl = 9 - subfunction number
4530
  * bh = device number
4529
  * bh = device number
4531
Returned value:
4530
Returned value:
4532
  * eax = Number of bytes received since device start (lower dword)
4531
  * eax = Number of bytes received since device start (lower dword)
4533
                  -1 on error
4532
                  -1 on error
4534
  * ebx = Number of bytes received since device start (higher dword)
4533
  * ebx = Number of bytes received since device start (higher dword)
4535
 
4534
 
4536
---------------------- Constants for registers: ----------------------
4535
---------------------- Constants for registers: ----------------------
4537
  eax - SF_NETWORK_GET (74)
4536
  eax - SF_NETWORK_GET (74)
4538
   bl - SSF_RX_BYTE_COUNT (9)
4537
   bl - SSF_RX_BYTE_COUNT (9)
4539
======================================================================
4538
======================================================================
4540
========== Function 74, Subfunction 10, Get link status. =============
4539
========== Function 74, Subfunction 10, Get link status. =============
4541
======================================================================
4540
======================================================================
4542
Parameters:
4541
Parameters:
4543
  * eax = 74 - function number
4542
  * eax = 74 - function number
4544
  * bl = 10 - subfunction number
4543
  * bl = 10 - subfunction number
4545
  * bh = device number
4544
  * bh = device number
4546
Returned value:
4545
Returned value:
4547
  * eax = link status, -1 on error
4546
  * eax = link status, -1 on error
4548
 
4547
 
4549
  Link status:
4548
  Link status:
4550
    ETH_LINK_DOWN   =    0b         ; Link is down
4549
    ETH_LINK_DOWN   =    0b         ; Link is down
4551
    ETH_LINK_UNKNOWN=    1b         ; There could be an active link
4550
    ETH_LINK_UNKNOWN=    1b         ; There could be an active link
4552
    ETH_LINK_FD     =   10b         ; full duplex flag
4551
    ETH_LINK_FD     =   10b         ; full duplex flag
4553
    ETH_LINK_10M    =  100b         ; 10 mbit
4552
    ETH_LINK_10M    =  100b         ; 10 mbit
4554
    ETH_LINK_100M   = 1000b         ; 100 mbit
4553
    ETH_LINK_100M   = 1000b         ; 100 mbit
4555
    ETH_LINK_1G     = 1100b         ; gigabit
4554
    ETH_LINK_1G     = 1100b         ; gigabit
4556
 
4555
 
4557
---------------------- Constants for registers: ----------------------
4556
---------------------- Constants for registers: ----------------------
4558
  eax - SF_NETWORK_GET (74)
4557
  eax - SF_NETWORK_GET (74)
4559
   bl - SSF_LINK_STATUS (10)
4558
   bl - SSF_LINK_STATUS (10)
4560
======================================================================
4559
======================================================================
4561
============== Function 75, Subfunction 0, Open socket. ==============
4560
============== Function 75, Subfunction 0, Open socket. ==============
4562
======================================================================
4561
======================================================================
4563
Parameters:
4562
Parameters:
4564
  * eax = 75 - function number
4563
  * eax = 75 - function number
4565
  * bl = 0 - subfunction number
4564
  * bl = 0 - subfunction number
4566
  * ecx = domain
4565
  * ecx = domain
4567
  * edx = type
4566
  * edx = type
4568
  * esi = protocol
4567
  * esi = protocol
4569
Returned value:
4568
Returned value:
4570
  * eax = socket number, -1 on error
4569
  * eax = socket number, -1 on error
4571
  * ebx = errorcode
4570
  * ebx = errorcode
4572
 
4571
 
4573
---------------------- Constants for registers: ----------------------
4572
---------------------- Constants for registers: ----------------------
4574
  eax - SF_NETWORK_SOCKET (75)
4573
  eax - SF_NETWORK_SOCKET (75)
4575
   bl - SSF_OPEN (0)
4574
   bl - SSF_OPEN (0)
4576
======================================================================
4575
======================================================================
4577
============= Function 75, Subfunction 1, Close socket. ==============
4576
============= Function 75, Subfunction 1, Close socket. ==============
4578
======================================================================
4577
======================================================================
4579
Parameters:
4578
Parameters:
4580
  * eax = 75 - function number
4579
  * eax = 75 - function number
4581
  * bl = 1 - subfunction number
4580
  * bl = 1 - subfunction number
4582
  * ecx = socket number
4581
  * ecx = socket number
4583
Returned value:
4582
Returned value:
4584
  * eax = -1 on error
4583
  * eax = -1 on error
4585
  * ebx = errorcode
4584
  * ebx = errorcode
4586
 
4585
 
4587
---------------------- Constants for registers: ----------------------
4586
---------------------- Constants for registers: ----------------------
4588
  eax - SF_NETWORK_SOCKET (75)
4587
  eax - SF_NETWORK_SOCKET (75)
4589
   bl - SSF_CLOSE (1)
4588
   bl - SSF_CLOSE (1)
4590
======================================================================
4589
======================================================================
4591
================== Function 75, Subfunction 2, Bind. =================
4590
================== Function 75, Subfunction 2, Bind. =================
4592
======================================================================
4591
======================================================================
4593
Parameters:
4592
Parameters:
4594
  * eax = 75 - function number
4593
  * eax = 75 - function number
4595
  * bl = 2 - subfunction number
4594
  * bl = 2 - subfunction number
4596
  * ecx = socket number
4595
  * ecx = socket number
4597
  * edx = pointer to sockaddr structure
4596
  * edx = pointer to sockaddr structure
4598
  * esi = length of sockaddr structure
4597
  * esi = length of sockaddr structure
4599
Format of SockAddr structure:
4598
Format of SockAddr structure:
4600
  * +0: Word: Family
4599
  * +0: Word: Family
4601
  * +2: 14*Byte: Data
4600
  * +2: 14*Byte: Data
4602
Returned value:
4601
Returned value:
4603
  * eax = -1 on error
4602
  * eax = -1 on error
4604
  * ebx = errorcode
4603
  * ebx = errorcode
4605
 
4604
 
4606
---------------------- Constants for registers: ----------------------
4605
---------------------- Constants for registers: ----------------------
4607
  eax - SF_NETWORK_SOCKET (75)
4606
  eax - SF_NETWORK_SOCKET (75)
4608
   bl - SSF_BIND (2)
4607
   bl - SSF_BIND (2)
4609
======================================================================
4608
======================================================================
4610
================= Function 75, Subfunction 3, Listen. ================
4609
================= Function 75, Subfunction 3, Listen. ================
4611
======================================================================
4610
======================================================================
4612
Parameters:
4611
Parameters:
4613
  * eax = 75 - function number
4612
  * eax = 75 - function number
4614
  * bl = 3 - subfunction number
4613
  * bl = 3 - subfunction number
4615
  * ecx = socket number
4614
  * ecx = socket number
4616
  * edx = backlog
4615
  * edx = backlog
4617
Returned value:
4616
Returned value:
4618
  * eax = -1 on error
4617
  * eax = -1 on error
4619
  * ebx = errorcode
4618
  * ebx = errorcode
4620
 
4619
 
4621
---------------------- Constants for registers: ----------------------
4620
---------------------- Constants for registers: ----------------------
4622
  eax - SF_NETWORK_SOCKET (75)
4621
  eax - SF_NETWORK_SOCKET (75)
4623
   bl - SSF_LISTEN (3)
4622
   bl - SSF_LISTEN (3)
4624
======================================================================
4623
======================================================================
4625
================ Function 75, Subfunction 4, Connect. ================
4624
================ Function 75, Subfunction 4, Connect. ================
4626
======================================================================
4625
======================================================================
4627
Parameters:
4626
Parameters:
4628
  * eax = 75 - function number
4627
  * eax = 75 - function number
4629
  * bl = 4 - subfunction number
4628
  * bl = 4 - subfunction number
4630
  * ecx = socket number
4629
  * ecx = socket number
4631
  * edx = pointer to sockaddr structure
4630
  * edx = pointer to sockaddr structure
4632
  * esi = length of sockaddr structure
4631
  * esi = length of sockaddr structure
4633
Format of SockAddr structure:
4632
Format of SockAddr structure:
4634
  * +0: Word: Family
4633
  * +0: Word: Family
4635
  * +2: 14*Byte: Data
4634
  * +2: 14*Byte: Data
4636
Returned value:
4635
Returned value:
4637
  * eax = -1 on error
4636
  * eax = -1 on error
4638
  * ebx = errorcode
4637
  * ebx = errorcode
4639
 
4638
 
4640
---------------------- Constants for registers: ----------------------
4639
---------------------- Constants for registers: ----------------------
4641
  eax - SF_NETWORK_SOCKET (75)
4640
  eax - SF_NETWORK_SOCKET (75)
4642
   bl - SSF_CONNECT (4)
4641
   bl - SSF_CONNECT (4)
4643
======================================================================
4642
======================================================================
4644
================= Function 75, Subfunction 5, Accept. ================
4643
================= Function 75, Subfunction 5, Accept. ================
4645
======================================================================
4644
======================================================================
4646
Parameters:
4645
Parameters:
4647
  * eax = 75 - function number
4646
  * eax = 75 - function number
4648
  * bl = 5 - subfunction number
4647
  * bl = 5 - subfunction number
4649
  * ecx = socket number
4648
  * ecx = socket number
4650
  * edx = pointer to sockaddr structure
4649
  * edx = pointer to sockaddr structure
4651
  * esi = length of sockaddr structure
4650
  * esi = length of sockaddr structure
4652
Format of SockAddr structure:
4651
Format of SockAddr structure:
4653
  * +0: Word: Family
4652
  * +0: Word: Family
4654
  * +2: 14*Byte: Data
4653
  * +2: 14*Byte: Data
4655
Returned value:
4654
Returned value:
4656
  * eax = socket number of accepted socket, -1 on error
4655
  * eax = socket number of accepted socket, -1 on error
4657
  * ebx = errorcode
4656
  * ebx = errorcode
4658
 
4657
 
4659
---------------------- Constants for registers: ----------------------
4658
---------------------- Constants for registers: ----------------------
4660
  eax - SF_NETWORK_SOCKET (75)
4659
  eax - SF_NETWORK_SOCKET (75)
4661
   bl - SSF_ACCEPT (5)
4660
   bl - SSF_ACCEPT (5)
4662
======================================================================
4661
======================================================================
4663
================== Function 75, Subfunction 6, Send. =================
4662
================== Function 75, Subfunction 6, Send. =================
4664
======================================================================
4663
======================================================================
4665
Parameters:
4664
Parameters:
4666
  * eax = 75 - function number
4665
  * eax = 75 - function number
4667
  * bl = 6 - subfunction number
4666
  * bl = 6 - subfunction number
4668
  * ecx = socket number
4667
  * ecx = socket number
4669
  * edx = pointer to buffer
4668
  * edx = pointer to buffer
4670
  * esi = length of buffer
4669
  * esi = length of buffer
4671
  * edi = flags
4670
  * edi = flags
4672
Returned value:
4671
Returned value:
4673
  * eax = number of bytes copied, -1 on error
4672
  * eax = number of bytes copied, -1 on error
4674
  * ebx = errorcode
4673
  * ebx = errorcode
4675
 
4674
 
4676
---------------------- Constants for registers: ----------------------
4675
---------------------- Constants for registers: ----------------------
4677
  eax - SF_NETWORK_SOCKET (75)
4676
  eax - SF_NETWORK_SOCKET (75)
4678
   bl - SSF_SEND (6)
4677
   bl - SSF_SEND (6)
4679
======================================================================
4678
======================================================================
4680
================ Function 75, Subfunction 7, Receive. ================
4679
================ Function 75, Subfunction 7, Receive. ================
4681
======================================================================
4680
======================================================================
4682
Parameters:
4681
Parameters:
4683
  * eax = 75 - function number
4682
  * eax = 75 - function number
4684
  * bl = 7 - subfunction number
4683
  * bl = 7 - subfunction number
4685
  * ecx = socket number
4684
  * ecx = socket number
4686
  * edx = pointer to buffer
4685
  * edx = pointer to buffer
4687
  * esi = length of buffer
4686
  * esi = length of buffer
4688
  * edi = flags
4687
  * edi = flags
4689
Returned value:
4688
Returned value:
4690
  * eax = number of bytes copied, -1 on error
4689
  * eax = number of bytes copied, -1 on error
4691
  * ebx = errorcode
4690
  * ebx = errorcode
4692
 
4691
 
4693
---------------------- Constants for registers: ----------------------
4692
---------------------- Constants for registers: ----------------------
4694
  eax - SF_NETWORK_SOCKET (75)
4693
  eax - SF_NETWORK_SOCKET (75)
4695
   bl - SSF_RECEIVE (7)
4694
   bl - SSF_RECEIVE (7)
4696
======================================================================
4695
======================================================================
4697
=========== Function 75, Subfunction 8, Set socket options. ==========
4696
=========== Function 75, Subfunction 8, Set socket options. ==========
4698
======================================================================
4697
======================================================================
4699
Parameters:
4698
Parameters:
4700
  * eax = 75 - function number
4699
  * eax = 75 - function number
4701
  * bl = 8 - subfunction number
4700
  * bl = 8 - subfunction number
4702
  * ecx = socket number
4701
  * ecx = socket number
4703
  * edx = pointer to optstruct
4702
  * edx = pointer to optstruct
4704
Returned value:
4703
Returned value:
4705
  * eax = -1 on error
4704
  * eax = -1 on error
4706
  * ebx = errorcode
4705
  * ebx = errorcode
4707
Remarks:
4706
Remarks:
4708
 
4707
 
4709
  Optstruct:
4708
  Optstruct:
4710
    dd level
4709
    dd level
4711
    dd optionname
4710
    dd optionname
4712
    dd optlength
4711
    dd optlength
4713
    db options...
4712
    db options...
4714
 
4713
 
4715
---------------------- Constants for registers: ----------------------
4714
---------------------- Constants for registers: ----------------------
4716
  eax - SF_NETWORK_SOCKET (75)
4715
  eax - SF_NETWORK_SOCKET (75)
4717
   bl - SSF_SET_OPTIONS (8)
4716
   bl - SSF_SET_OPTIONS (8)
4718
======================================================================
4717
======================================================================
4719
=========== Function 75, Subfunction 9, Get socket options. ==========
4718
=========== Function 75, Subfunction 9, Get socket options. ==========
4720
======================================================================
4719
======================================================================
4721
Parameters:
4720
Parameters:
4722
  * eax = 75 - function number
4721
  * eax = 75 - function number
4723
  * bl = 9 - subfunction number
4722
  * bl = 9 - subfunction number
4724
  * ecx = socket number
4723
  * ecx = socket number
4725
  * edx = pointer to optstruct
4724
  * edx = pointer to optstruct
4726
Returned value:
4725
Returned value:
4727
  * eax = -1 on error
4726
  * eax = -1 on error
4728
  * ebx = errorcode
4727
  * ebx = errorcode
4729
Remarks:
4728
Remarks:
4730
 
4729
 
4731
  Optstruct:
4730
  Optstruct:
4732
    dd level
4731
    dd level
4733
    dd optionname
4732
    dd optionname
4734
    dd optlength
4733
    dd optlength
4735
    db options...
4734
    db options...
4736
 
4735
 
4737
---------------------- Constants for registers: ----------------------
4736
---------------------- Constants for registers: ----------------------
4738
  eax - SF_NETWORK_SOCKET (75)
4737
  eax - SF_NETWORK_SOCKET (75)
4739
   bl - SSF_GET_OPTIONS (9)
4738
   bl - SSF_GET_OPTIONS (9)
4740
======================================================================
4739
======================================================================
4741
============ Function 75, Subfunction 10, Get socketpair. ============
4740
============ Function 75, Subfunction 10, Get socketpair. ============
4742
======================================================================
4741
======================================================================
4743
Parameters:
4742
Parameters:
4744
  * eax = 75 - function number
4743
  * eax = 75 - function number
4745
  * bl = 10 - subfunction number
4744
  * bl = 10 - subfunction number
4746
Returned value:
4745
Returned value:
4747
  * eax = socketnum1, -1 on error
4746
  * eax = socketnum1, -1 on error
4748
  * ebx = socketnum2, errorcode on error
4747
  * ebx = socketnum2, errorcode on error
4749
 
4748
 
4750
---------------------- Constants for registers: ----------------------
4749
---------------------- Constants for registers: ----------------------
4751
  eax - SF_NETWORK_SOCKET (75)
4750
  eax - SF_NETWORK_SOCKET (75)
4752
   bl - SSF_GET_PAIR (10)
4751
   bl - SSF_GET_PAIR (10)
4753
======================================================================
4752
======================================================================
4754
============ Function 76, Network options and statistics. ============
4753
============ Function 76, Network options and statistics. ============
4755
======================================================================
4754
======================================================================
4756
Parameters:
4755
Parameters:
4757
  * eax = 76 - function number
4756
  * eax = 76 - function number
4758
  * high half of ebx = protocol number
4757
  * high half of ebx = protocol number
4759
  * bh = device number
4758
  * bh = device number
4760
  * bl = subfunction number
4759
  * bl = subfunction number
4761
 
4760
 
4762
======================================================================
4761
======================================================================
4763
==== Function 76, Protocol 0 - Ethernet, Subfunction 0, Read MAC. ====
4762
==== Function 76, Protocol 0 - Ethernet, Subfunction 0, Read MAC. ====
4764
======================================================================
4763
======================================================================
4765
Parameters:
4764
Parameters:
4766
  * eax = 76 - function number
4765
  * eax = 76 - function number
4767
  * high half of ebx = 0 (Ethernet)
4766
  * high half of ebx = 0 (Ethernet)
4768
  * bh = device number
4767
  * bh = device number
4769
  * bl = 0 (Read MAC)
4768
  * bl = 0 (Read MAC)
4770
Returned value:
4769
Returned value:
4771
  * eax = -1 on error, otherwise lower bits of MAC
4770
  * eax = -1 on error, otherwise lower bits of MAC
4772
  * bx = upper bits of MAC
4771
  * bx = upper bits of MAC
4773
 
4772
 
4774
======================================================================
4773
======================================================================
4775
= Function 76, Protocol 1 - IPv4, Subfunction 0, Read # Packets sent =
4774
= Function 76, Protocol 1 - IPv4, Subfunction 0, Read # Packets sent =
4776
======================================================================
4775
======================================================================
4777
Parameters:
4776
Parameters:
4778
  * eax = 76 - function number
4777
  * eax = 76 - function number
4779
  * high half of ebx = 1 (IPv4)
4778
  * high half of ebx = 1 (IPv4)
4780
  * bh = device number
4779
  * bh = device number
4781
  * bl = 0 (Read # packets sent)
4780
  * bl = 0 (Read # packets sent)
4782
Returned value:
4781
Returned value:
4783
  * eax = number of packets sent (-1 on error)
4782
  * eax = number of packets sent (-1 on error)
4784
 
4783
 
4785
======================================================================
4784
======================================================================
4786
= Function 76, Protocol 1 - IPv4, Subfunction 1, Read # Packets rcvd =
4785
= Function 76, Protocol 1 - IPv4, Subfunction 1, Read # Packets rcvd =
4787
======================================================================
4786
======================================================================
4788
Parameters:
4787
Parameters:
4789
  * eax = 76 - function number
4788
  * eax = 76 - function number
4790
  * high half of ebx = 1 (IPv4)
4789
  * high half of ebx = 1 (IPv4)
4791
  * bh = device number
4790
  * bh = device number
4792
  * bl = 1 (Read # packets received)
4791
  * bl = 1 (Read # packets received)
4793
Returned value:
4792
Returned value:
4794
  * eax = number of packets received (-1 on error)
4793
  * eax = number of packets received (-1 on error)
4795
 
4794
 
4796
======================================================================
4795
======================================================================
4797
=== Function 76, Protocol 1 - IPv4, Subfunction 2, Read IP address ===
4796
=== Function 76, Protocol 1 - IPv4, Subfunction 2, Read IP address ===
4798
======================================================================
4797
======================================================================
4799
Parameters:
4798
Parameters:
4800
  * eax = 76 - function number
4799
  * eax = 76 - function number
4801
  * high half of ebx = 1 (IPv4)
4800
  * high half of ebx = 1 (IPv4)
4802
  * bh = device number
4801
  * bh = device number
4803
  * bl = 2 (Read IP address)
4802
  * bl = 2 (Read IP address)
4804
Returned value:
4803
Returned value:
4805
  * eax = IP address (-1 on error)
4804
  * eax = IP address (-1 on error)
4806
 
4805
 
4807
======================================================================
4806
======================================================================
4808
=== Function 76, Protocol 1 - IPv4, Subfunction 3, Set IP address ====
4807
=== Function 76, Protocol 1 - IPv4, Subfunction 3, Set IP address ====
4809
======================================================================
4808
======================================================================
4810
Parameters:
4809
Parameters:
4811
  * eax = 76 - function number
4810
  * eax = 76 - function number
4812
  * high half of ebx = 1 (IPv4)
4811
  * high half of ebx = 1 (IPv4)
4813
  * bh = device number
4812
  * bh = device number
4814
  * bl = 3 (Set IP address)
4813
  * bl = 3 (Set IP address)
4815
  * ecx = IP address
4814
  * ecx = IP address
4816
Returned value:
4815
Returned value:
4817
  * eax = -1 on error
4816
  * eax = -1 on error
4818
 
4817
 
4819
======================================================================
4818
======================================================================
4820
== Function 76, Protocol 1 - IPv4, Subfunction 4, Read DNS address ===
4819
== Function 76, Protocol 1 - IPv4, Subfunction 4, Read DNS address ===
4821
======================================================================
4820
======================================================================
4822
Parameters:
4821
Parameters:
4823
  * eax = 76 - function number
4822
  * eax = 76 - function number
4824
  * high half of ebx = 1 (IPv4)
4823
  * high half of ebx = 1 (IPv4)
4825
  * bh = device number
4824
  * bh = device number
4826
  * bl = 4 (Read DNS server IP address)
4825
  * bl = 4 (Read DNS server IP address)
4827
Returned value:
4826
Returned value:
4828
  * eax = DNS server IP address (-1 on error)
4827
  * eax = DNS server IP address (-1 on error)
4829
 
4828
 
4830
======================================================================
4829
======================================================================
4831
=== Function 76, Protocol 1 - IPv4, Subfunction 5, Set DNS address ===
4830
=== Function 76, Protocol 1 - IPv4, Subfunction 5, Set DNS address ===
4832
======================================================================
4831
======================================================================
4833
Parameters:
4832
Parameters:
4834
  * eax = 76 - function number
4833
  * eax = 76 - function number
4835
  * high half of ebx = 1 (IPv4)
4834
  * high half of ebx = 1 (IPv4)
4836
  * bh = device number
4835
  * bh = device number
4837
  * bl = 5 (Set DNS address)
4836
  * bl = 5 (Set DNS address)
4838
  * ecx = DNS server IP address
4837
  * ecx = DNS server IP address
4839
Returned value:
4838
Returned value:
4840
  * eax = -1 on error
4839
  * eax = -1 on error
4841
 
4840
 
4842
======================================================================
4841
======================================================================
4843
== Function 76, Protocol 1 - IPv4, Subfunction 6, Read subnet mask ===
4842
== Function 76, Protocol 1 - IPv4, Subfunction 6, Read subnet mask ===
4844
======================================================================
4843
======================================================================
4845
Parameters:
4844
Parameters:
4846
  * eax = 76 - function number
4845
  * eax = 76 - function number
4847
  * high half of ebx = 1 (IPv4)
4846
  * high half of ebx = 1 (IPv4)
4848
  * bh = device number
4847
  * bh = device number
4849
  * bl = 6 (Read subnet mask)
4848
  * bl = 6 (Read subnet mask)
4850
Returned value:
4849
Returned value:
4851
  * eax = subnet mask (-1 on error)
4850
  * eax = subnet mask (-1 on error)
4852
 
4851
 
4853
======================================================================
4852
======================================================================
4854
=== Function 76, Protocol 1 - IPv4, Subfunction 7, Set subnet mask ===
4853
=== Function 76, Protocol 1 - IPv4, Subfunction 7, Set subnet mask ===
4855
======================================================================
4854
======================================================================
4856
Parameters:
4855
Parameters:
4857
  * eax = 76 - function number
4856
  * eax = 76 - function number
4858
  * high half of ebx = 1 (IPv4)
4857
  * high half of ebx = 1 (IPv4)
4859
  * bh = device number
4858
  * bh = device number
4860
  * bl = 7 (Set DNS address)
4859
  * bl = 7 (Set DNS address)
4861
  * ecx = subnet mask
4860
  * ecx = subnet mask
4862
Returned value:
4861
Returned value:
4863
  * eax = -1 on error
4862
  * eax = -1 on error
4864
 
4863
 
4865
======================================================================
4864
======================================================================
4866
===== Function 76, Protocol 1 - IPv4, Subfunction 8, Read gateway ====
4865
===== Function 76, Protocol 1 - IPv4, Subfunction 8, Read gateway ====
4867
======================================================================
4866
======================================================================
4868
Parameters:
4867
Parameters:
4869
  * eax = 76 - function number
4868
  * eax = 76 - function number
4870
  * high half of ebx = 1 (IPv4)
4869
  * high half of ebx = 1 (IPv4)
4871
  * bh = device number
4870
  * bh = device number
4872
  * bl = 8 (Read gateway IP address)
4871
  * bl = 8 (Read gateway IP address)
4873
Returned value:
4872
Returned value:
4874
  * eax = gateway IP address (-1 on error)
4873
  * eax = gateway IP address (-1 on error)
4875
 
4874
 
4876
======================================================================
4875
======================================================================
4877
===== Function 76, Protocol 1 - IPv4, Subfunction 9, Set gateway =====
4876
===== Function 76, Protocol 1 - IPv4, Subfunction 9, Set gateway =====
4878
======================================================================
4877
======================================================================
4879
Parameters:
4878
Parameters:
4880
  * eax = 76 - function number
4879
  * eax = 76 - function number
4881
  * high half of ebx = 1 (IPv4)
4880
  * high half of ebx = 1 (IPv4)
4882
  * bh = device number
4881
  * bh = device number
4883
  * bl = 9 (Set getway address)
4882
  * bl = 9 (Set getway address)
4884
  * ecx = gateway IP address
4883
  * ecx = gateway IP address
4885
Returned value:
4884
Returned value:
4886
  * eax = -1 on error
4885
  * eax = -1 on error
4887
 
4886
 
4888
======================================================================
4887
======================================================================
4889
= Function 76, Protocol 2 - ICMP, Subfunction 0, Read # Packets sent =
4888
= Function 76, Protocol 2 - ICMP, Subfunction 0, Read # Packets sent =
4890
======================================================================
4889
======================================================================
4891
Parameters:
4890
Parameters:
4892
  * eax = 76 - function number
4891
  * eax = 76 - function number
4893
  * high half of ebx = 2 (ICMP)
4892
  * high half of ebx = 2 (ICMP)
4894
  * bh = device number
4893
  * bh = device number
4895
  * bl = 0 (Read # packets sent)
4894
  * bl = 0 (Read # packets sent)
4896
Returned value:
4895
Returned value:
4897
  * eax = number of packets sent (-1 on error)
4896
  * eax = number of packets sent (-1 on error)
4898
 
4897
 
4899
======================================================================
4898
======================================================================
4900
= Function 76, Protocol 2 - ICMP, Subfunction 1, Read # Packets rcvd =
4899
= Function 76, Protocol 2 - ICMP, Subfunction 1, Read # Packets rcvd =
4901
======================================================================
4900
======================================================================
4902
Parameters:
4901
Parameters:
4903
  * eax = 76 - function number
4902
  * eax = 76 - function number
4904
  * high half of ebx = 2 (ICMP)
4903
  * high half of ebx = 2 (ICMP)
4905
  * bh = device number
4904
  * bh = device number
4906
  * bl = 1 (Read # packets received)
4905
  * bl = 1 (Read # packets received)
4907
Returned value:
4906
Returned value:
4908
  * eax = number of packets received (-1 on error)
4907
  * eax = number of packets received (-1 on error)
4909
 
4908
 
4910
======================================================================
4909
======================================================================
4911
= Function 76, Protocol 3 - UDP, Subfunction 0, Read # Packets sent ==
4910
= Function 76, Protocol 3 - UDP, Subfunction 0, Read # Packets sent ==
4912
======================================================================
4911
======================================================================
4913
Parameters:
4912
Parameters:
4914
  * eax = 76 - function number
4913
  * eax = 76 - function number
4915
  * high half of ebx = 3 (UDP)
4914
  * high half of ebx = 3 (UDP)
4916
  * bh = device number
4915
  * bh = device number
4917
  * bl = 0 (Read # packets sent)
4916
  * bl = 0 (Read # packets sent)
4918
Returned value:
4917
Returned value:
4919
  * eax = number of packets sent (-1 on error)
4918
  * eax = number of packets sent (-1 on error)
4920
 
4919
 
4921
======================================================================
4920
======================================================================
4922
= Function 76, Protocol 3 - UDP, Subfunction 1, Read # Packets rcvd ==
4921
= Function 76, Protocol 3 - UDP, Subfunction 1, Read # Packets rcvd ==
4923
======================================================================
4922
======================================================================
4924
Parameters:
4923
Parameters:
4925
  * eax = 76 - function number
4924
  * eax = 76 - function number
4926
  * high half of ebx = 3 (UDP)
4925
  * high half of ebx = 3 (UDP)
4927
  * bh = device number
4926
  * bh = device number
4928
  * bl = 1 (Read # packets received)
4927
  * bl = 1 (Read # packets received)
4929
Returned value:
4928
Returned value:
4930
  * eax = number of packets received (-1 on error)
4929
  * eax = number of packets received (-1 on error)
4931
 
4930
 
4932
======================================================================
4931
======================================================================
4933
= Function 76, Protocol 4 - TCP, Subfunction 0, Read # Packets sent ==
4932
= Function 76, Protocol 4 - TCP, Subfunction 0, Read # Packets sent ==
4934
======================================================================
4933
======================================================================
4935
Parameters:
4934
Parameters:
4936
  * eax = 76 - function number
4935
  * eax = 76 - function number
4937
  * high half of ebx = 4 (TCP)
4936
  * high half of ebx = 4 (TCP)
4938
  * bh = device number
4937
  * bh = device number
4939
  * bl = 0 (Read # packets sent)
4938
  * bl = 0 (Read # packets sent)
4940
Returned value:
4939
Returned value:
4941
  * eax = number of packets sent (-1 on error)
4940
  * eax = number of packets sent (-1 on error)
4942
 
4941
 
4943
======================================================================
4942
======================================================================
4944
= Function 76, Protocol 4 - TCP, Subfunction 1, Read # Packets rcvd ==
4943
= Function 76, Protocol 4 - TCP, Subfunction 1, Read # Packets rcvd ==
4945
======================================================================
4944
======================================================================
4946
Parameters:
4945
Parameters:
4947
  * eax = 76 - function number
4946
  * eax = 76 - function number
4948
  * high half of ebx = 4 (TCP)
4947
  * high half of ebx = 4 (TCP)
4949
  * bh = device number
4948
  * bh = device number
4950
  * bl = 1 (Read # packets received)
4949
  * bl = 1 (Read # packets received)
4951
Returned value:
4950
Returned value:
4952
  * eax = number of packets received (-1 on error)
4951
  * eax = number of packets received (-1 on error)
4953
 
4952
 
4954
======================================================================
4953
======================================================================
4955
= Function 76, Protocol 5 - ARP, Subfunction 0, Read # Packets sent ==
4954
= Function 76, Protocol 5 - ARP, Subfunction 0, Read # Packets sent ==
4956
======================================================================
4955
======================================================================
4957
Parameters:
4956
Parameters:
4958
  * eax = 76 - function number
4957
  * eax = 76 - function number
4959
  * high half of ebx = 5 (ARP)
4958
  * high half of ebx = 5 (ARP)
4960
  * bh = device number
4959
  * bh = device number
4961
  * bl = 0 (Read # packets sent)
4960
  * bl = 0 (Read # packets sent)
4962
Returned value:
4961
Returned value:
4963
  * eax = number of packets sent (-1 on error)
4962
  * eax = number of packets sent (-1 on error)
4964
 
4963
 
4965
======================================================================
4964
======================================================================
4966
= Function 76, Protocol 5 - ARP, Subfunction 1, Read # Packets rcvd ==
4965
= Function 76, Protocol 5 - ARP, Subfunction 1, Read # Packets rcvd ==
4967
======================================================================
4966
======================================================================
4968
Parameters:
4967
Parameters:
4969
  * eax = 76 - function number
4968
  * eax = 76 - function number
4970
  * high half of ebx = 5 (ARP)
4969
  * high half of ebx = 5 (ARP)
4971
  * bh = device number
4970
  * bh = device number
4972
  * bl = 1 (Read # packets received)
4971
  * bl = 1 (Read # packets received)
4973
Returned value:
4972
Returned value:
4974
  * eax = number of packets received (-1 on error)
4973
  * eax = number of packets received (-1 on error)
4975
 
4974
 
4976
======================================================================
4975
======================================================================
4977
== Function 76, Protocol 5 - ARP, Subfunction 2, Read # ARP entries ==
4976
== Function 76, Protocol 5 - ARP, Subfunction 2, Read # ARP entries ==
4978
======================================================================
4977
======================================================================
4979
Parameters:
4978
Parameters:
4980
  * eax = 76 - function number
4979
  * eax = 76 - function number
4981
  * high half of ebx = 5 (ARP)
4980
  * high half of ebx = 5 (ARP)
4982
  * bh = device number
4981
  * bh = device number
4983
  * bl = 2 (Read # current entries in the ARP table)
4982
  * bl = 2 (Read # current entries in the ARP table)
4984
Returned value:
4983
Returned value:
4985
  * eax = number of entries (-1 on error)
4984
  * eax = number of entries (-1 on error)
4986
 
4985
 
4987
======================================================================
4986
======================================================================
4988
==== Function 76, Protocol 5 - ARP, Subfunction 3, Read ARP entry ====
4987
==== Function 76, Protocol 5 - ARP, Subfunction 3, Read ARP entry ====
4989
======================================================================
4988
======================================================================
4990
Parameters:
4989
Parameters:
4991
  * eax = 76 - function number
4990
  * eax = 76 - function number
4992
  * high half of ebx = 5 (ARP)
4991
  * high half of ebx = 5 (ARP)
4993
  * bh = device number
4992
  * bh = device number
4994
  * bl = 3 (Read ARP entry)
4993
  * bl = 3 (Read ARP entry)
4995
  * ecx = ARP entry number (0 based)
4994
  * ecx = ARP entry number (0 based)
4996
  * edi = ptr to buffer where ARP entry will be written
4995
  * edi = ptr to buffer where ARP entry will be written
4997
Returned value:
4996
Returned value:
4998
  * eax = -1 on error
4997
  * eax = -1 on error
4999
Remarks:
4998
Remarks:
5000
	ARP_entry struct is defined in ARP.inc in kernel and currently looks like this:
4999
	ARP_entry struct is defined in ARP.inc in kernel and currently looks like this:
5001
struct  ARP_entry
5000
struct  ARP_entry
5002
        IP              dd ?
5001
        IP              dd ?
5003
        MAC             dp ?
5002
        MAC             dp ?
5004
        Status          dw ?
5003
        Status          dw ?
5005
        TTL             dw ?
5004
        TTL             dw ?
5006
ends
5005
ends
5007
 
5006
 
5008
======================================================================
5007
======================================================================
5009
==== Function 76, Protocol 5 - ARP, Subfunction 4, Add ARP entry ====
5008
==== Function 76, Protocol 5 - ARP, Subfunction 4, Add ARP entry ====
5010
======================================================================
5009
======================================================================
5011
Parameters:
5010
Parameters:
5012
  * eax = 76 - function number
5011
  * eax = 76 - function number
5013
  * high half of ebx = 5 (ARP)
5012
  * high half of ebx = 5 (ARP)
5014
  * bh = device number
5013
  * bh = device number
5015
  * bl = 4 (Add ARP entry)
5014
  * bl = 4 (Add ARP entry)
5016
  * esi = ptr to buffer holding ARP entry
5015
  * esi = ptr to buffer holding ARP entry
5017
Returned value:
5016
Returned value:
5018
  * eax = -1 on error
5017
  * eax = -1 on error
5019
Remarks:
5018
Remarks:
5020
	See previous function for details on ARP entry.
5019
	See previous function for details on ARP entry.
5021
 
5020
 
5022
======================================================================
5021
======================================================================
5023
=== Function 76, Protocol 5 - ARP, Subfunction 5, Remove ARP entry ====
5022
=== Function 76, Protocol 5 - ARP, Subfunction 5, Remove ARP entry ====
5024
======================================================================
5023
======================================================================
5025
Parameters:
5024
Parameters:
5026
  * eax = 76 - function number
5025
  * eax = 76 - function number
5027
  * high half of ebx = 5 (ARP)
5026
  * high half of ebx = 5 (ARP)
5028
  * bh = device number
5027
  * bh = device number
5029
  * bl = 3 (Read ARP entry)
5028
  * bl = 3 (Read ARP entry)
5030
  * ecx = ARP entry number (0 based), use -1 to clear whole ARP table.
5029
  * ecx = ARP entry number (0 based), use -1 to clear whole ARP table.
5031
Returned value:
5030
Returned value:
5032
  * eax = -1 on error
5031
  * eax = -1 on error
5033
 
5032
 
5034
======================================================================
5033
======================================================================
5035
=== Function 76, Protocol 5 - ARP, Subfunction 6, Send ARP announce ==
5034
=== Function 76, Protocol 5 - ARP, Subfunction 6, Send ARP announce ==
5036
======================================================================
5035
======================================================================
5037
Parameters:
5036
Parameters:
5038
  * eax = 76 - function number
5037
  * eax = 76 - function number
5039
  * high half of ebx = 5 (ARP)
5038
  * high half of ebx = 5 (ARP)
5040
  * bh = device number
5039
  * bh = device number
5041
  * bl = 6 (Send ARP announce)
5040
  * bl = 6 (Send ARP announce)
5042
Returned value:
5041
Returned value:
5043
  * eax = -1 on error
5042
  * eax = -1 on error
5044
 
5043
 
5045
======================================================================
5044
======================================================================
5046
=== Function 76, Protocol 5 - ARP, Subfunction 7, Read # conflicts ===
5045
=== Function 76, Protocol 5 - ARP, Subfunction 7, Read # conflicts ===
5047
======================================================================
5046
======================================================================
5048
Parameters:
5047
Parameters:
5049
  * eax = 76 - function number
5048
  * eax = 76 - function number
5050
  * high half of ebx = 5 (ARP)
5049
  * high half of ebx = 5 (ARP)
5051
  * bh = device number
5050
  * bh = device number
5052
  * bl = 7 (Read # IP address conflicts that have occured)
5051
  * bl = 7 (Read # IP address conflicts that have occured)
5053
Returned value:
5052
Returned value:
5054
  * eax = # IP address conflicts (-1 on error)
5053
  * eax = # IP address conflicts (-1 on error)
5055
 
5054
 
5056
---------------------- Constants for registers: ----------------------
5055
---------------------- Constants for registers: ----------------------
5057
  eax - SF_NETWORK_PROTOCOL (76)
5056
  eax - SF_NETWORK_PROTOCOL (76)
5058
======================================================================
5057
======================================================================
5059
========== Function 77, Subfunction 0, Create futex object ===========
5058
========== Function 77, Subfunction 0, Create futex object ===========
5060
======================================================================
5059
======================================================================
5061
Parameters:
5060
Parameters:
5062
  * eax = 77 - function number
5061
  * eax = 77 - function number
5063
  * ebx = 0 - subfunction number
5062
  * ebx = 0 - subfunction number
5064
  * ecx = pointer to futex dword
5063
  * ecx = pointer to futex dword
5065
Returned value:
5064
Returned value:
5066
  * eax = futex handle, 0 on error
5065
  * eax = futex handle, 0 on error
5067
Remarks:
5066
Remarks:
5068
  * Use subfunction 1 to destroy the futex.
5067
  * Use subfunction 1 to destroy the futex.
5069
    The kernel destroys the futexes automatically when the process
5068
    The kernel destroys the futexes automatically when the process
5070
    terminates.
5069
    terminates.
5071
 
5070
 
5072
---------------------- Constants for registers: ----------------------
5071
---------------------- Constants for registers: ----------------------
5073
  eax - SF_FUTEX (77)
5072
  eax - SF_FUTEX (77)
5074
  ebx - SSF_CREATE (0)
5073
  ebx - SSF_CREATE (0)
5075
======================================================================
5074
======================================================================
5076
========= Function 77, Subfunction 1, Destroy futex object ===========
5075
========= Function 77, Subfunction 1, Destroy futex object ===========
5077
======================================================================
5076
======================================================================
5078
Parameters:
5077
Parameters:
5079
  * eax = 77 - function number
5078
  * eax = 77 - function number
5080
  * ebx = 1 - subfunction number
5079
  * ebx = 1 - subfunction number
5081
  * ecx = futex handle
5080
  * ecx = futex handle
5082
Returned value:
5081
Returned value:
5083
  * eax = 0 - successfull, -1 on error
5082
  * eax = 0 - successfull, -1 on error
5084
Remarks:
5083
Remarks:
5085
  * The futex handle must have been created by subfunction 0
5084
  * The futex handle must have been created by subfunction 0
5086
 
5085
 
5087
---------------------- Constants for registers: ----------------------
5086
---------------------- Constants for registers: ----------------------
5088
  eax - SF_FUTEX (77)
5087
  eax - SF_FUTEX (77)
5089
  ebx - SSF_DESTROY (1)
5088
  ebx - SSF_DESTROY (1)
5090
======================================================================
5089
======================================================================
5091
=============== Function 77, Subfunction 2, Futex wait ===============
5090
=============== Function 77, Subfunction 2, Futex wait ===============
5092
======================================================================
5091
======================================================================
5093
Parameters:
5092
Parameters:
5094
  * eax = 77 - function number
5093
  * eax = 77 - function number
5095
  * ebx = 2 - subfunction number
5094
  * ebx = 2 - subfunction number
5096
  * ecx = futex handle
5095
  * ecx = futex handle
5097
  * edx = control value
5096
  * edx = control value
5098
  * esi = timeout in system ticks or 0 for infinity
5097
  * esi = timeout in system ticks or 0 for infinity
5099
Returned value:
5098
Returned value:
5100
  * eax = 0 - successfull
5099
  * eax = 0 - successfull
5101
	 -1 - timeout
5100
	 -1 - timeout
5102
	 -2 - futex dword does not have the same value as edx
5101
	 -2 - futex dword does not have the same value as edx
5103
Remarks:
5102
Remarks:
5104
  * This functionn tests that the value at the futex dword still
5103
  * This functionn tests that the value at the futex dword still
5105
    contains the expected control value, and if so, then sleeps
5104
    contains the expected control value, and if so, then sleeps
5106
    waiting for a wake operation on the futex.
5105
    waiting for a wake operation on the futex.
5107
  * The futex handle must have been created by subfunction 0
5106
  * The futex handle must have been created by subfunction 0
5108
 
5107
 
5109
---------------------- Constants for registers: ----------------------
5108
---------------------- Constants for registers: ----------------------
5110
  eax - SF_FUTEX (77)
5109
  eax - SF_FUTEX (77)
5111
  ebx - SSF_WAIT (2)
5110
  ebx - SSF_WAIT (2)
5112
======================================================================
5111
======================================================================
5113
=============== Function 77, Subfunction 3, Futex wake ===============
5112
=============== Function 77, Subfunction 3, Futex wake ===============
5114
======================================================================
5113
======================================================================
5115
Parameters:
5114
Parameters:
5116
  * eax = 77 - function number
5115
  * eax = 77 - function number
5117
  * ebx = 3 - subfunction number
5116
  * ebx = 3 - subfunction number
5118
  * ecx = futex handle
5117
  * ecx = futex handle
5119
  * edx = number of waiters to wake
5118
  * edx = number of waiters to wake
5120
Returned value:
5119
Returned value:
5121
  * eax = number of waiters that were woken up
5120
  * eax = number of waiters that were woken up
5122
 
5121
 
5123
Remarks:
5122
Remarks:
5124
  * This function wakes at most edx of the waiters that are
5123
  * This function wakes at most edx of the waiters that are
5125
    waiting (e.g., inside futex wait) on the futex dword
5124
    waiting (e.g., inside futex wait) on the futex dword
5126
  * The futex handle must have been created by subfunction 0
5125
  * The futex handle must have been created by subfunction 0
5127
 
5126
 
5128
---------------------- Constants for registers: ----------------------
5127
---------------------- Constants for registers: ----------------------
5129
  eax - SF_FUTEX (77)
5128
  eax - SF_FUTEX (77)
5130
  ebx - SSF_WAKE (3)
5129
  ebx - SSF_WAKE (3)
5131
======================================================================
5130
======================================================================
5132
=== Function 80 - file system interface with parameter of encoding ===
5131
=== Function 80 - file system interface with parameter of encoding ===
5133
======================================================================
5132
======================================================================
5134
Parameters:
5133
Parameters:
5135
  * eax = 80
5134
  * eax = 80
5136
  * ebx = pointer to the information structure
5135
  * ebx = pointer to the information structure
5137
Returned value:
5136
Returned value:
5138
  * eax = 0 - success; otherwise file system error code
5137
  * eax = 0 - success; otherwise file system error code
5139
  * some subfunctions return value in other registers too
5138
  * some subfunctions return value in other registers too
5140
General format of the information structure:
5139
General format of the information structure:
5141
  * +0: dword: subfunction number
5140
  * +0: dword: subfunction number
5142
  * +4: dword: offset in file or folder
5141
  * +4: dword: offset in file or folder
5143
  * +8: dword: higher part of offset or flags
5142
  * +8: dword: higher part of offset or flags
5144
  * +12 = +0xC: dword: size of data
5143
  * +12 = +0xC: dword: size of data
5145
  * +16 = +0x10: dword: pointer to data
5144
  * +16 = +0x10: dword: pointer to data
5146
  * +20 = +0x14: dword: string encoding:
5145
  * +20 = +0x14: dword: string encoding:
5147
    1 = cp866
5146
    1 = cp866
5148
    2 = UTF-16LE
5147
    2 = UTF-16LE
5149
    3 = UTF-8
5148
    3 = UTF-8
5150
    0 = default (supports encoding byte at the start of the string)
5149
    0 = default (supports encoding byte at the start of the string)
5151
  * +24 = +0x18: dword: pointer to zero terminated string with path
5150
  * +24 = +0x18: dword: pointer to zero terminated string with path
5152
 
5151
 
5153
The rest is similar to sysfunction 70.
5152
The rest is similar to sysfunction 70.
5154
 
5153
 
5155
======================================================================
5154
======================================================================
5156
=============== Function -1 - terminate thread/process ===============
5155
=============== Function -1 - terminate thread/process ===============
5157
======================================================================
5156
======================================================================
5158
Parameters:
5157
Parameters:
5159
  * eax = -1 - function number
5158
  * eax = -1 - function number
5160
Returned value:
5159
Returned value:
5161
  * function does not return neither value nor control
5160
  * function does not return neither value nor control
5162
Remarks:
5161
Remarks:
5163
  * If the process did not create threads obviously, it has only
5162
  * If the process did not create threads obviously, it has only
5164
    one thread, which termination results in process termination.
5163
    one thread, which termination results in process termination.
5165
  * If the current thread is last in the process, its termination
5164
  * If the current thread is last in the process, its termination
5166
    also results in process terminates.
5165
    also results in process terminates.
5167
  * This function terminates the current thread. Other thread can be
5166
  * This function terminates the current thread. Other thread can be
5168
    killed by call to subfunction 2 of function 18.
5167
    killed by call to subfunction 2 of function 18.
5169
 
5168
 
5170
---------------------- Constants for registers: ----------------------
5169
---------------------- Constants for registers: ----------------------
5171
  eax - SF_TERMINATE_PROCESS (-1)
5170
  eax - SF_TERMINATE_PROCESS (-1)
5172
======================================================================
5171
======================================================================
5173
=========================== List of events ===========================
5172
=========================== List of events ===========================
5174
======================================================================
5173
======================================================================
5175
Next event can be retrieved by the call of one from functions 10
5174
Next event can be retrieved by the call of one from functions 10
5176
(to wait for event), 11 (to check without waiting), 23
5175
(to wait for event), 11 (to check without waiting), 23
5177
(to wait during the given time).
5176
(to wait during the given time).
5178
These functions return only those events, which enter into a mask set
5177
These functions return only those events, which enter into a mask set
5179
by function 40. By default it is first three,
5178
by function 40. By default it is first three,
5180
there is enough for most applications.
5179
there is enough for most applications.
5181
Codes of events:
5180
Codes of events:
5182
  * 1 = redraw event (is reset by call to function 0)
5181
  * 1 = redraw event (is reset by call to function 0)
5183
  * 2 = key on keyboard is pressed (acts, only when the window is
5182
  * 2 = key on keyboard is pressed (acts, only when the window is
5184
    active) or hotkey is pressed; is reset, when all keys from
5183
    active) or hotkey is pressed; is reset, when all keys from
5185
    the buffer are read out by function 2
5184
    the buffer are read out by function 2
5186
  * 3 = button is pressed, defined earlier by function 8
5185
  * 3 = button is pressed, defined earlier by function 8
5187
    (or close button, created implicitly by function 0;
5186
    (or close button, created implicitly by function 0;
5188
    minimize button is handled by the system and sends no message;
5187
    minimize button is handled by the system and sends no message;
5189
    acts, only when the window is active;
5188
    acts, only when the window is active;
5190
    is reset when all buttons from the buffer
5189
    is reset when all buttons from the buffer
5191
    are read out by function 17)
5190
    are read out by function 17)
5192
  * 4 = reserved (in current implementation never comes even after
5191
  * 4 = reserved (in current implementation never comes even after
5193
    unmasking by function 40)
5192
    unmasking by function 40)
5194
  * 5 = kernel finished redrawing of the desktop background
5193
  * 5 = kernel finished redrawing of the desktop background
5195
  * 6 = mouse event (something happened - button pressing or moving;
5194
  * 6 = mouse event (something happened - button pressing or moving;
5196
    is reset at reading)
5195
    is reset at reading)
5197
  * 7 = IPC event (see function 60 -
5196
  * 7 = IPC event (see function 60 -
5198
    Inter Process Communication; is reset at reading)
5197
    Inter Process Communication; is reset at reading)
5199
  * 8 = network event (is reset at reading)
5198
  * 8 = network event (is reset at reading)
5200
  * 9 = debug event (is reset at reading; see
5199
  * 9 = debug event (is reset at reading; see
5201
    debug subsystem)
5200
    debug subsystem)
5202
  * 16..31 = event with appropriate IRQ
5201
  * 16..31 = event with appropriate IRQ
5203
    (16=IRQ0, 31=IRQ15) (is reset after reading all IRQ data)
5202
    (16=IRQ0, 31=IRQ15) (is reset after reading all IRQ data)
5204
 
5203
 
5205
======================================================================
5204
======================================================================
5206
=================== Error codes of the file system ===================
5205
=================== Error codes of the file system ===================
5207
======================================================================
5206
======================================================================
5208
  * 0 = success
5207
  * 0 = success
5209
  * 2 = function is not supported for the given file system
5208
  * 2 = function is not supported for the given file system
5210
  * 3 = unknown file system
5209
  * 3 = unknown file system
5211
  * 5 = file not found
5210
  * 5 = file not found
5212
  * 6 = end of file, EOF
5211
  * 6 = end of file, EOF
5213
  * 7 = pointer lies outside of application memory
5212
  * 7 = pointer lies outside of application memory
5214
  * 8 = disk is full
5213
  * 8 = disk is full
5215
  * 9 = file system error
5214
  * 9 = file system error
5216
  * 10 = access denied
5215
  * 10 = access denied
5217
  * 11 = device error
5216
  * 11 = device error
5218
  * 12 = file system requires more memory
5217
  * 12 = file system requires more memory
5219
 
5218
 
5220
Application start functions can return also following errors:
5219
Application start functions can return also following errors:
5221
  * 30 = 0x1E = not enough memory
5220
  * 30 = 0x1E = not enough memory
5222
  * 31 = 0x1F = file is not executable
5221
  * 31 = 0x1F = file is not executable
5223
  * 32 = 0x20 = too many processes
5222
  * 32 = 0x20 = too many processes
5224
>
5223
>
5225
>
5224
>