forked from KolibriOS/kolibrios
bf5320cbe8
git-svn-id: svn://kolibrios.org@7639 a494cfbc-eb01-0410-851d-a64ba20cac60
1 line
3.0 KiB
NASM
1 line
3.0 KiB
NASM
use32
|
|
org 0x0
|
|
|
|
db 'MENUET01' ; 8 byte id
|
|
dd 38 ; required os
|
|
dd STARTAPP ; program start
|
|
dd I_END ; program image size
|
|
dd 0x1000000 ; required amount of memory
|
|
dd 0x1000000 ; stack heap
|
|
dd 0x0
|
|
dd 0x0
|
|
|
|
include '../../../proc32.inc'
|
|
include '../../../macros.inc'
|
|
include '../../../dll.inc'
|
|
|
|
|
|
PATH_MAX equ 255
|
|
|
|
STARTAPP:
|
|
; Initialize memory
|
|
mcall 68, 11
|
|
or eax,eax
|
|
jz close_app
|
|
; Import libraries
|
|
stdcall dll.Load,importTable
|
|
test eax, eax
|
|
jnz close_app
|
|
|
|
; Set button style: flat or gradient (3D)
|
|
invoke ini_get_int, aIni, aSectionSkn, aButtonStyle, 0
|
|
mov ecx, eax
|
|
mcall 48, 1
|
|
|
|
; Set bg or not?
|
|
invoke ini_get_int, aIni, aSectionBg, aBgActive, 0
|
|
cmp eax, 1
|
|
jne set_skin
|
|
|
|
set_bg:
|
|
invoke ini_get_str, aIni, aSectionBg, aBgProgram, sz_buffer, PATH_MAX, 0
|
|
invoke ini_get_str, aIni, aSectionBg, aBgParam, sz_param, PATH_MAX, 0
|
|
stdcall RunProgram, sz_buffer, sz_param
|
|
|
|
set_skin:
|
|
invoke ini_get_str, aIni, aSectionSkn, aSkinPath, sz_param, PATH_MAX, 0
|
|
mcall 48, 8, sz_param
|
|
|
|
close_app:
|
|
mcall -1
|
|
|
|
proc RunProgram stdcall, app_path:dword, app_param:dword
|
|
push eax
|
|
m2m dword [InfoStructure+8], [app_param] ; pointer to the parametrs
|
|
m2m dword [InfoStructure+21], [app_path] ; pointer to the file name
|
|
mcall 70, InfoStructure
|
|
pop eax
|
|
ret
|
|
endp
|
|
|
|
|
|
align 16
|
|
importTable:
|
|
library \
|
|
libini, 'libini.obj'
|
|
|
|
import libini, \
|
|
ini_get_str ,'ini_get_str', \
|
|
ini_get_int ,'ini_get_int'
|
|
|
|
InfoStructure:
|
|
dd 7 ; subfunction number
|
|
dd 0 ; position in the file in bytes
|
|
dd ? ; upper part of the position address
|
|
dd 0 ; number of bytes to read
|
|
dd 0 ; pointer to the buffer to write data
|
|
db 0
|
|
dd ? ; pointer to the filename
|
|
|
|
|
|
aIni db '/sys/settings/eskin.ini',0
|
|
|
|
aSectionBg db 'bg',0
|
|
aBgActive db 'active',0
|
|
aBgProgram db 'program',0
|
|
aBgParam db 'param',0
|
|
|
|
aSectionSkn db 'skin',0
|
|
aButtonStyle db '3d',0
|
|
aSkinPath db 'file',0
|
|
|
|
|
|
sz_buffer:
|
|
rb PATH_MAX
|
|
sz_param:
|
|
rb PATH_MAX
|
|
|
|
I_END: ; End of application code and data marker
|
|
|