mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-07 16:59:08 +00:00
Fix the multiple definitions error.
I don't know why it worked before like that.. but after updating devkitARM etc it seems to cause compilation issues.
This commit is contained in:
+2
-2
@@ -10,8 +10,8 @@ typedef enum
|
|||||||
LOOP_EXIT, /*!< Terminate looping */
|
LOOP_EXIT, /*!< Terminate looping */
|
||||||
} loop_status_t;
|
} loop_status_t;
|
||||||
|
|
||||||
bool isTransfering;
|
extern bool isTransfering;
|
||||||
char ftp_accepted_connection[50], ftp_file_transfer[100];
|
extern char ftp_accepted_connection[50], ftp_file_transfer[100];
|
||||||
|
|
||||||
int ftp_init(void);
|
int ftp_init(void);
|
||||||
loop_status_t ftp_loop(void);
|
loop_status_t ftp_loop(void);
|
||||||
|
|||||||
@@ -33,6 +33,10 @@
|
|||||||
#define BIT(x) (1<<(x))
|
#define BIT(x) (1<<(x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
bool isTransfering;
|
||||||
|
char ftp_accepted_connection[50], ftp_file_transfer[100];
|
||||||
|
|
||||||
#define POLL_UNKNOWN (~(POLLIN|POLLPRI|POLLOUT))
|
#define POLL_UNKNOWN (~(POLLIN|POLLPRI|POLLOUT))
|
||||||
|
|
||||||
#define XFER_BUFFERSIZE 32768
|
#define XFER_BUFFERSIZE 32768
|
||||||
|
|||||||
Reference in New Issue
Block a user