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.
43 lines
773 B
C
43 lines
773 B
C
/*
|
|
* Copyright 2013, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SUPPORT_ARCHITECTURE_H
|
|
#define _SUPPORT_ARCHITECTURE_H
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.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
|
|
|
|
|
|
/* C++ API */
|
|
#ifdef __cplusplus
|
|
|
|
|
|
#include <StringList.h>
|
|
|
|
|
|
status_t get_secondary_architectures(BStringList& _architectures);
|
|
status_t get_architectures(BStringList& _architectures);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* _SUPPORT_ARCHITECTURE_H */
|