mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
11 lines
240 B
Plaintext
11 lines
240 B
Plaintext
; Show error
|
|
!macro ShowError TEXT RETRYLABEL
|
|
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "${TEXT}" IDIGNORE +2 IDRETRY ${RETRYLABEL}
|
|
Abort
|
|
!macroend
|
|
|
|
!macro ShowErrorFinal TEXT
|
|
MessageBox MB_OK|MB_ICONSTOP "${TEXT}"
|
|
Abort
|
|
!macroend
|