mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-05 04:25:09 +01:00
14 lines
279 B
C
14 lines
279 B
C
#pragma once
|
|
|
|
/*! Loop status */
|
|
typedef enum
|
|
{
|
|
LOOP_CONTINUE, /*!< Continue looping */
|
|
LOOP_RESTART, /*!< Reinitialize */
|
|
LOOP_EXIT, /*!< Terminate looping */
|
|
} loop_status_t;
|
|
|
|
int ftp_init(void);
|
|
loop_status_t ftp_loop(void);
|
|
void ftp_exit(void);
|