ASIO to JACK driver for WINE
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
464B

  1. #!/bin/sh
  2. set -e
  3. sed -i asio.h -e 's/unsigned long/ULONG/g'
  4. sed -i asio.h -e 's/long long int/LONGLONG/g'
  5. sed -i asio.h -e 's/long int/LONG/g'
  6. sed -i asio.h -e 's/long/LONG/g'
  7. sed -i asio.h -e 's/(\*bufferSwitch)/(CALLBACK *bufferSwitch)/g'
  8. sed -i asio.h -e 's/(\*sampleRateDidChange)/(CALLBACK *sampleRateDidChange)/g'
  9. sed -i asio.h -e 's/(\*asioMessage)/(CALLBACK *asioMessage)/g'
  10. sed -i asio.h -e 's/(\*bufferSwitchTimeInfo)/(CALLBACK *bufferSwitchTimeInfo)/g'