14 lines
210 B
C++
14 lines
210 B
C++
#include <string>
|
|
|
|
#pragma once
|
|
|
|
namespace ptprnt::driver {
|
|
|
|
struct info {
|
|
std::string name{""};
|
|
std::string version{""};
|
|
uint32_t busNo{0};
|
|
uint32_t flags{0};
|
|
};
|
|
|
|
} // namespace ptprnt::driver
|