flexPTP-basic/ptp_profile_presets.h
2023-04-27 08:23:40 +00:00

11 lines
402 B
C

#ifndef PTP_PROFILE_PRESETS_H_
#define PTP_PROFILE_PRESETS_H_
#include <flexptp/ptp_types.h>
const PtpProfile *ptp_profile_preset_get(const char *pName); // get profile by name
size_t ptp_profile_preset_cnt(); // get number of preset profiles
const char *ptp_profile_preset_get_name(size_t i); // get profile name by index
#endif /* PTP_PROFILE_PRESETS_H_ */