add dummy platform file

This commit is contained in:
notaz 2012-11-05 02:41:43 +02:00
parent afdbb7c873
commit e22d791cf8
2 changed files with 18 additions and 0 deletions

2
plat.h
View file

@ -1,6 +1,8 @@
#ifndef LIBPICOFE_PLAT_H
#define LIBPICOFE_PLAT_H
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif

16
plat_dummy.c Normal file
View file

@ -0,0 +1,16 @@
#include "plat.h"
struct plat_target plat_target;
int plat_target_init(void)
{
return 0;
}
void plat_target_finish(void)
{
}
void plat_target_setup_input(void)
{
}