mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
30 lines
353 B
C
30 lines
353 B
C
/*
|
|
* brlyt.c
|
|
* BannerPlayer
|
|
*
|
|
* Created by Alex Marshall on 09/03/16.
|
|
* Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "brlyt.h"
|
|
|
|
void BRLYT_Initialize(char rootpath[])
|
|
{
|
|
|
|
}
|
|
|
|
int BRLYT_ReadObjects(BRLYT_object** objs)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void BRLYT_Finish()
|
|
{
|
|
|
|
}
|