mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-03 06:17:44 -04:00
add dummy platform file
This commit is contained in:
parent
afdbb7c873
commit
e22d791cf8
2 changed files with 18 additions and 0 deletions
2
plat.h
2
plat.h
|
@ -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
16
plat_dummy.c
Normal 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)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue