bmr placeholders

This commit is contained in:
krystalgamer 2024-08-04 17:57:53 +02:00
parent 54987d641f
commit 6151fa12ce
2 changed files with 33 additions and 2 deletions

26
bmr.cpp
View File

@ -1 +1,25 @@
#include "bmr.h"
#include "bmr.h"
// @SMALLTODO
void BMP_Draw(char const *)
{
printf("BMP_Draw(char const *)");
}
// @SMALLTODO
void DeleteBMP(void)
{
printf("DeleteBMP(void)");
}
// @SMALLTODO
void DrawBMP(void)
{
printf("DrawBMP(void)");
}
// @SMALLTODO
void LoadBMP(char const *)
{
printf("LoadBMP(char const *)");
}

9
bmr.h
View File

@ -3,4 +3,11 @@
#ifndef BMR_H
#define BMR_H
#endif
#include "export.h"
EXPORT void BMP_Draw(char const *);
EXPORT void DeleteBMP(void);
EXPORT void DrawBMP(void);
EXPORT void LoadBMP(char const *);
#endif