1 /* 2 * Copyright 2013, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SYSTEM_ARCHITECTURE_PRIVATE_H 6 #define _SYSTEM_ARCHITECTURE_PRIVATE_H 7 8 9 #include <Architecture.h> 10 11 12 __BEGIN_DECLS 13 14 15 const char* __get_architecture(); 16 const char* __get_primary_architecture(); 17 size_t __get_secondary_architectures(const char** architectures, 18 size_t count); 19 size_t __get_architectures(const char** architectures, size_t count); 20 const char* __guess_architecture_for_path(const char* path); 21 22 23 __END_DECLS 24 25 26 #endif /* _SYSTEM_ARCHITECTURE_PRIVATE_H */ 27