mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-03-06 21:00:31 +01:00
more corrections
This commit is contained in:
parent
e29f42c937
commit
284e479455
2 changed files with 7 additions and 0 deletions
|
@ -119,6 +119,7 @@ gboolean g_shell_parse_argv(const gchar* command_line, gint* argcp, gchar*** arg
|
|||
GError* err = malloc(sizeof(GError));
|
||||
err->message = message;
|
||||
*error = err;
|
||||
return false;
|
||||
}
|
||||
|
||||
gboolean g_spawn_async_with_fds(const gchar *working_directory, gchar **argv,
|
||||
|
|
|
@ -9,6 +9,12 @@
|
|||
#include <string.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#define G_OS_WIN32 1
|
||||
#else
|
||||
#define G_OS_UNIX 1
|
||||
#endif
|
||||
|
||||
#define G_LITTLE_ENDIAN 0
|
||||
#define G_BIG_ENDIAN 1
|
||||
#define G_BYTE_ORDER G_LITTLE_ENDIAN
|
||||
|
|
Loading…
Add table
Reference in a new issue