mirror of
https://github.com/deadw00d/AROS.git
synced 2025-11-23 20:21:25 +00:00
18 lines
370 B
C
18 lines
370 B
C
/*
|
|
Copyright (C) 2005, The AROS Development Team. All rights reserved.
|
|
|
|
Desc: Include file for genmodules support for oop.library classes
|
|
*/
|
|
#ifndef OOPSUPPORT_H
|
|
#define OOPSUPPORT_H
|
|
|
|
#include "config.h"
|
|
#include "functionhead.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
void writeoopincludes(FILE *out);
|
|
void writeoopinit(FILE *out, struct classinfo *);
|
|
|
|
#endif /* OOPSUPPORT_H */
|