mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 07:23:04 +01:00
Misc
This commit is contained in:
parent
5ee7b35d73
commit
4dd7b4c668
@ -23,7 +23,7 @@ useful to system administrators, and to other programs calling the Setup
|
||||
program.
|
||||
|
||||
/SP-
|
||||
Disables the This will install... Do you wish to continue? prompt
|
||||
Disables the "This will install... Do you wish to continue?" prompt
|
||||
at the beginning of Setup. Of course, this will have no effect if the
|
||||
DisableStartupPrompt [Setup] section directive was set to yes.
|
||||
|
||||
@ -37,7 +37,7 @@ program.
|
||||
'/SP-' command line option explained above).
|
||||
|
||||
If a restart is necessary and the '/NORESTART' command isn't used (see
|
||||
below) and Setup is silent, it will display a Reboot now? message box.
|
||||
below) and Setup is silent, it will display a "Reboot now?" message box.
|
||||
If it's very silent it will reboot without asking.
|
||||
|
||||
/SUPPRESSMSGBOXES
|
||||
|
@ -137,7 +137,7 @@ static SSHORT convert( ULONG number, UCHAR * buffer)
|
||||
const UCHAR *p;
|
||||
|
||||
#ifndef WORDS_BIGENDIAN
|
||||
p = (UCHAR *) & number;
|
||||
p = (UCHAR *) &number;
|
||||
*buffer++ = *p++;
|
||||
*buffer++ = *p++;
|
||||
*buffer++ = *p++;
|
||||
@ -145,7 +145,7 @@ static SSHORT convert( ULONG number, UCHAR * buffer)
|
||||
|
||||
#else
|
||||
|
||||
p = (UCHAR *) & number;
|
||||
p = (UCHAR *) &number;
|
||||
p += 3;
|
||||
*buffer++ = *p--;
|
||||
*buffer++ = *p--;
|
||||
|
Loading…
Reference in New Issue
Block a user