Create decls for the new draw functions.

This commit is contained in:
Bill Currie 2012-02-06 15:18:34 +09:00
parent c98ffa4eda
commit d6ddbe4efe
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,8 @@ struct _qpic_t {
};
typedef struct _qpic_t *qpic_t;
@extern void Draw_FreePic (qpic_t pic);
@extern qpic_t Draw_MakePic (int width, int heiight, void *data);
@extern qpic_t Draw_CachePic (string name, int alpha);
@extern void Draw_Pic (int x, int y, qpic_t pic);

View File

@ -1,5 +1,7 @@
#include "draw.h"
void Draw_FreePic (qpic_t pic) = #0;
qpic_t Draw_MakePic (int width, int heiight, void *data) = #0;
qpic_t (string name, int alpha) Draw_CachePic = #0;
void (int x, int y, qpic_t pic) Draw_Pic = #0;