mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-03 19:13:24 -05:00
18 lines
291 B
C
18 lines
291 B
C
|
|
#ifndef __REMOTE_PAIRING_H__
|
|
#define __REMOTE_PAIRING_H__
|
|
|
|
void
|
|
remote_pairing_kickoff_bydevicepin(const char *devname, const char *pin);
|
|
|
|
void
|
|
remote_pairing_kickoff_byfile(char *path);
|
|
|
|
int
|
|
remote_pairing_init(void);
|
|
|
|
void
|
|
remote_pairing_deinit(void);
|
|
|
|
#endif /* !__REMOTE_PAIRING_H__ */
|