demo/Win32PlaySound.R

# Package: rdyncall 
# File: demo/Win32PlaySound.R
# Description: Win32 Demo, playing a wav file (dynbind demo)

if (.Platform$OS.type == "windows") {

  dynbind("winmm", "PlaySoundA(Zii)v;", callmode="stdcall")
  tada <- paste( Sys.getenv("SystemRoot"), "\\Media\\tada.wav", sep="" )
  PlaySoundA(tada,0,0)

} else {
  cat("This demo is runnable on windows only.")
}

Try the rdyncall package in your browser

Any scripts or data that you put into this service are public.

rdyncall documentation built on May 2, 2019, 6:15 p.m.