20 lines
316 B
C
20 lines
316 B
C
/*
|
|||
|
|
* Copyright 2006, Jerome Duval. All rights reserved.
|
||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#ifndef _KERNEL_DDM_H
|
||
|
|
#define _KERNEL_DDM_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
status_t ddm_init_post_modules(struct kernel_args *args);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* _KERNEL_DDM_H */
|