#!/bin/sh
echo "Running in Windows 98 environment..."
export WINDOWS_VERSION="win98"

[ -z "$WINEDLLOVERRIDES" ] || WINEDLLOVERRIDES="${WINEDLLOVERRIDES};"

export WINEDLLOVERRIDES="${WINEDLLOVERRIDES}ole32,rpcrt4,oleaut32,olecnv32,olethk32,olepro32,msi,msiexec.exe=n"

wine "$@"
