mirror of
https://github.com/buserror/mii_emu.git
synced 2024-11-22 01:30:51 +00:00
ad86adfea4
+ Updated libmui + Typehead in the standard file dialog + More documentation in the header file + Made regexp optional, added a new way to specify suffix list Signed-off-by: Michel Pollet <buserror@gmail.com>
41 lines
622 B
C
41 lines
622 B
C
/*
|
|
* mii_thread.h
|
|
*
|
|
* Copyright (C) 2023 Michel Pollet <buserror@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "fifo_declare.h"
|
|
|
|
enum mii_th_state_e {
|
|
SIGNAL_RESET,
|
|
SIGNAL_STOP,
|
|
SIGNAL_STEP,
|
|
SIGNAL_RUN,
|
|
};
|
|
|
|
typedef struct mii_th_signal_t {
|
|
uint8_t cmd;
|
|
uint8_t data;
|
|
} mii_th_signal_t;
|
|
|
|
DECLARE_FIFO(mii_th_signal_t, mii_th_fifo, 16);
|
|
DEFINE_FIFO(mii_th_signal_t, mii_th_fifo);
|
|
|
|
struct mii_t;
|
|
|
|
pthread_t
|
|
mii_threads_start(
|
|
struct mii_t *mii);
|
|
struct mii_th_fifo_t*
|
|
mii_thread_get_fifo(
|
|
struct mii_t *mii);
|
|
int
|
|
mii_thread_set_fps(
|
|
int timerfd,
|
|
float fps);
|