mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-01 15:49:56 +02:00
17 lines
176 B
C++
17 lines
176 B
C++
#ifndef PCM_DEVICE_H
|
|
#define PCM_DEVICE_H
|
|
|
|
#include <string>
|
|
|
|
|
|
struct PcmDevice
|
|
{
|
|
PcmDevice() : idx(-1){};
|
|
int idx;
|
|
std::string name;
|
|
std::string description;
|
|
};
|
|
|
|
|
|
#endif
|
|
|