I would like to take adantage of the GetSystemMetrics WinAPI in USER32.DLL.

I understrand it takes a signed integer as a parameter (the index), and
returns a signed integer with the values I listed (0=normal boot,
1 & 2=safe mode) where SM_CLEANBOOT is defined as 67.

GetSystemMetrics(SM_CLEANBOOT);

0 Normal boot
1 Fail-safe boot
2 Fail-safe with network boot


Can I do this from within Kixtart ?