is_windows Function

public function is_windows()

Return whether the current OS is Windows.

Arguments

None

Return Value logical


Calls

proc~~is_windows~~CallsGraph proc~is_windows is_windows get_os_type get_os_type proc~is_windows->get_os_type

Called by

proc~~is_windows~~CalledByGraph proc~is_windows is_windows proc~null_device null_device proc~null_device->proc~is_windows proc~shell_wrap shell_wrap proc~shell_wrap->proc~is_windows

Source Code

   logical function is_windows()
      is_windows = (get_os_type() == OS_WINDOWS)
   end function is_windows