c39c9283aa
* get_architectures() returns the primary and the secondary architectures in one array. That turned out to be convenient. * Add C++ versions for get[_secondary]_architectures(), returning a BStringList.
27 lines
591 B
C
27 lines
591 B
C
/*
|
|
* Copyright 2013, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SYSTEM_ARCHITECTURE_PRIVATE_H
|
|
#define _SYSTEM_ARCHITECTURE_PRIVATE_H
|
|
|
|
|
|
#include <Architecture.h>
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
const char* __get_architecture();
|
|
const char* __get_primary_architecture();
|
|
size_t __get_secondary_architectures(const char** architectures,
|
|
size_t count);
|
|
size_t __get_architectures(const char** architectures, size_t count);
|
|
const char* __guess_architecture_for_path(const char* path);
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
#endif /* _SYSTEM_ARCHITECTURE_PRIVATE_H */
|