13 lines
336 B
C
13 lines
336 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2024 Jeff Epler for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "py/obj.h"
|
|
|
|
typedef struct usb_video_uvcframebuffer_obj {
|
|
mp_obj_base_t base;
|
|
} usb_video_uvcframebuffer_obj_t;
|