diff --git a/BasiliskII/src/include/audio_defs.h b/BasiliskII/src/include/audio_defs.h index 25dffda5..a5fe5c18 100644 --- a/BasiliskII/src/include/audio_defs.h +++ b/BasiliskII/src/include/audio_defs.h @@ -77,6 +77,8 @@ const uint32 siHeadphoneVolume = FOURCC('p','v','o','l'); // volume level of he const uint32 siHeadphoneVolumeSteps = FOURCC('h','d','s','t'); // number of volume steps for headphone const uint32 siSpeakerMute = FOURCC('s','m','u','t'); // mute state of all built-in speakers const uint32 siSpeakerVolume = FOURCC('s','v','o','l'); // volume level of built-in speaker +const uint32 siDeviceName = FOURCC('n','a','m','e'); +const uint32 siDeviceIcon = FOURCC('i','c','o','n'); enum { // ComponentResource struct componentType = 0, diff --git a/BasiliskII/src/prefs_items.cpp b/BasiliskII/src/prefs_items.cpp index c64c2ba7..7fa4a793 100644 --- a/BasiliskII/src/prefs_items.cpp +++ b/BasiliskII/src/prefs_items.cpp @@ -18,6 +18,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "sysdeps.h" + +#include "sys.h" #include "prefs.h"