deviceCommands.h 586 B

123456789101112131415161718192021222324
  1. #ifndef _NULLSOFT_WINAMP_ML_DEVICES_DEVICE_COMMANDS_HEADER
  2. #define _NULLSOFT_WINAMP_ML_DEVICES_DEVICE_COMMANDS_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. BOOL
  8. DeviceCommands_Register();
  9. BOOL
  10. DeviceCommand_GetSupported(ifc_device *device,
  11. const char *name,
  12. DeviceCommandContext context,
  13. ifc_devicesupportedcommand **commandOut);
  14. BOOL
  15. DeviceCommand_GetEnabled(ifc_device *device,
  16. const char *name,
  17. DeviceCommandContext context);
  18. #endif //_NULLSOFT_WINAMP_ML_DEVICES_DEVICE_COMMANDS_HEADER