diff options
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index b54c086..f8a358e 100644 --- a/src/options.c +++ b/src/options.c @@ -2,6 +2,10 @@ Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net> All rights reserved. + Android port contributor: + Copyright (c) 2014-2015, Haofeng "Rick" Lei <ricklei@gmail.com> + All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -325,6 +329,13 @@ static void option_forward(void) { #endif +#ifdef __ANDROID__ +/** Handles the --android-integration option */ +static void option_android_integration(void) { + conf.android_integration = true; +} +#endif + #ifdef WITH_CMDLINE_COMMANDS /** Handles the --on-pre-up option */ |