From 0728b4cea8bf15bf48fa9645f2376de45d5d78e9 Mon Sep 17 00:00:00 2001 From: HOLZSCHUCH Nicolas Date: Mon, 6 Jul 2020 17:42:07 +0200 Subject: [PATCH] Still trying to revert --- ios_system_before/Info.plist | 24 ------------ ios_system_before/ios_system.h | 67 ---------------------------------- 2 files changed, 91 deletions(-) delete mode 100644 ios_system_before/Info.plist delete mode 100644 ios_system_before/ios_system.h diff --git a/ios_system_before/Info.plist b/ios_system_before/Info.plist deleted file mode 100644 index 1007fd9d..00000000 --- a/ios_system_before/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/ios_system_before/ios_system.h b/ios_system_before/ios_system.h deleted file mode 100644 index bc187f5c..00000000 --- a/ios_system_before/ios_system.h +++ /dev/null @@ -1,67 +0,0 @@ -// -// ios_system.h -// ios_system -// -// Created by Nicolas Holzschuch on 04/12/2017. -// Copyright © 2017 Nicolas Holzschuch. All rights reserved. -// - -#import -#import -#import - -//! Project version number for ios_system. -FOUNDATION_EXPORT double ios_systemVersionNumber; - -//! Project version string for ios_system. -FOUNDATION_EXPORT const unsigned char ios_systemVersionString[]; - -// Thread-local input and output streams -extern __thread FILE* thread_stdin; -extern __thread FILE* thread_stdout; -extern __thread FILE* thread_stderr; -extern __thread void* thread_context; -// set to true to have more commands available, more debugging information. -extern bool sideLoading; -// set to false to have the main thread run in detached mode (non blocking) -extern bool joinMainThread; - -extern int ios_executable(const char* inputCmd); // does this command exist? (executable file or builtin command) -extern int ios_system(const char* inputCmd); // execute this command (executable file or builtin command) -extern FILE *ios_popen(const char *command, const char *type); // Execute this command and pipe the result -extern int ios_kill(void); // kill the current running command -extern int ios_isatty(int fd); // test whether a file descriptor refers to a terminal -extern pthread_t ios_getLastThreadId(void); -extern pthread_t ios_getThreadId(pid_t pid); -extern void ios_storeThreadId(pthread_t thread); -extern void ios_releaseThread(pthread_t thread); -extern void ios_releaseThreadId(pid_t pid); -extern pid_t ios_currentPid(void); -extern int ios_getCommandStatus(void); -extern const char* ios_progname(void); -extern char * ios_getenv(const char *name); -extern pid_t ios_fork(void); -extern void ios_waitpid(pid_t pid); -extern void ios_signal(int signal); -void ios_setWindowSize(int width, int height, const void* sessionId); - -extern NSString* commandsAsString(void); -extern NSArray* commandsAsArray(void); // set of all commands, in an NSArrays -extern NSString* getoptString(NSString* command); -extern NSString* operatesOn(NSString* command); -extern void initializeEnvironment(void); -extern int ios_setMiniRoot(NSString*); // restricts operations to a certain hierarchy -extern int ios_setMiniRootURL(NSURL*); // restricts operations to a certain hierarchy -extern int ios_setAllowedPaths(NSArray *paths); // restricts operations to a certain hierarchy -extern void ios_switchSession(const void* sessionid); -extern void ios_closeSession(const void* sessionid); -extern void ios_setStreams(FILE* _stdin, FILE* _stdout, FILE* _stderr); -extern void ios_settty(FILE* _tty); -extern int ios_gettty(void); -extern void ios_setContext(const void *context); -extern void* ios_getContext(void); -extern void ios_setDirectoryURL(NSURL* workingDirectoryURL); -extern void replaceCommand(NSString* commandName, NSString* functionName, bool allOccurences); -extern NSError* addCommandList(NSString* fileLocation); -extern int numPythonInterpreters; -extern int cd_main(int argc, char** argv);