mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 22:34:48 +01:00
23 lines
507 B
C
23 lines
507 B
C
|
/*
|
||
|
* Copyright 2005-2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
|
||
|
* All rights reserved. Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
|
||
|
#ifndef _KERNEL_OPEN_FIRMWARE_DEVICES_H
|
||
|
#define _KERNEL_OPEN_FIRMWARE_DEVICES_H
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
status_t of_get_next_device(int *_cookie, int root, const char *type,
|
||
|
char *path, size_t pathSize);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} // extern "C"
|
||
|
#endif
|
||
|
|
||
|
#endif /* _KERNEL_OPEN_FIRMWARE_DEVICES_H */
|