RDSave: Notify 3 support

git-svn-id: svn://kolibrios.org@4810 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
eAndrew 2014-04-09 19:55:14 +00:00
parent 2ccfb21fdb
commit 951ad2c640

View File

@ -255,7 +255,10 @@ print_err:
call print_msg call print_msg
ret ret
@@: @@:
mov dword [is_notify + 8], edx stdcall _lstrcpy, ntf_msg, ntf_start
stdcall _lstrcat, ntf_msg, edx
stdcall _lstrcat, ntf_msg, ntf_end_e
mov dword [is_notify + 8], ntf_msg
mcall 70, is_notify mcall 70, is_notify
mov [param],0 mov [param],0
mov [hidden],0 mov [hidden],0
@ -279,7 +282,10 @@ print_ok:
@@: @@:
stdcall _lstrcpy,msg,ok stdcall _lstrcpy,msg,ok
stdcall _lstrcat,msg,fname_buf stdcall _lstrcat,msg,fname_buf
mov edx,msg stdcall _lstrcpy, ntf_msg, ntf_start
stdcall _lstrcat, ntf_msg, msg
stdcall _lstrcat, ntf_msg, ntf_end_o
mov edx,ntf_smsg
mov dword [is_notify + 8], edx mov dword [is_notify + 8], edx
mcall 70, is_notify mcall 70, is_notify
mcall 5,100 mcall 5,100
@ -451,6 +457,10 @@ rdError db "You can't save image on itself",0
error db 'Error: ',0 error db 'Error: ',0
end if end if
;--------------------------------------------------------------------- ;---------------------------------------------------------------------
ntf_start db '"RDSave\n', 0
ntf_end_o db '" -tO', 0
ntf_end_e db '" -tE', 0
;---------------------------------------------------------------------
errors: errors:
dd ok dd ok
dd error1 dd error1
@ -663,6 +673,9 @@ color rd 1
msg: msg:
rb 1024 rb 1024
ntf_msg:
rb 1024
folder_data: folder_data:
rb 304*32+32 ; 9 Kb rb 304*32+32 ; 9 Kb
;--------------------------------------------------------------------- ;---------------------------------------------------------------------