wok rev 20805

syslinux/iso2exe: add a MessageBox for Win9x (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 16 19:05:06 2019 +0100 (2019-02-16)
parents 0d54617661f0
children 95bd53a02010
files syslinux/stuff/iso2exe/win32.c
line diff
     1.1 --- a/syslinux/stuff/iso2exe/win32.c	Sat Feb 16 17:45:15 2019 +0100
     1.2 +++ b/syslinux/stuff/iso2exe/win32.c	Sat Feb 16 19:05:06 2019 +0100
     1.3 @@ -192,9 +192,9 @@
     1.4  	if (!iswinnt()) {
     1.5  #ifdef VCPI_LINUX_LOADER
     1.6  		if (MessageBox(NULL,"This program must be run in DOS mode.\n"
     1.7 -			"I can try to launch it, but it more safe\n"
     1.8 -			"to reboot in DOS mode and run it at DOS prompt.",
     1.9 -			"Boot SliTaz in DOS mode ?",
    1.10 +			"I can try to launch it, but it's safer to\n"
    1.11 +			"reboot in DOS mode and run it at DOS prompt.",
    1.12 +			"Launch SliTaz now ?",
    1.13  			MB_YESNO|MB_ICONQUESTION) == IDYES) {
    1.14  			exec16bits(isoFileName);
    1.15  		}