mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-05-12 11:43:16 -04:00
add class driver source files. also register iap audio sink. usbstack/iap/libiap directory is imported from libiap. Change-Id: I776c5caec33fe9efadc448e2e3b37d500bf19c9f
8 lines
183 B
C
8 lines
183 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
/* [1] P.546 Table C-34 PlayCurrentSelection packet */
|
|
|
|
struct IAPPlayCurrentSelectionPayload {
|
|
uint32_t track_index;
|
|
} __attribute__((packed));
|