mirror of
https://github.com/joel16/uofw.git
synced 2025-02-17 01:19:56 +00:00
17 lines
339 B
C
17 lines
339 B
C
![]() |
/* Copyright (C) 2011, 2012 The uOFW team
|
||
|
See the file COPYING for copying permission.
|
||
|
*/
|
||
|
|
||
|
/* Common file for module headers, ie the headers that specify the exports & data structures of a module */
|
||
|
|
||
|
#ifndef COMMON_HEADER_H
|
||
|
#define COMMON_HEADER_H
|
||
|
|
||
|
#define COMMON_INCLUDED
|
||
|
|
||
|
#include "common/errors.h"
|
||
|
#include "common/types.h"
|
||
|
|
||
|
#endif
|
||
|
|