mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Create decls for the new draw functions.
This commit is contained in:
parent
c98ffa4eda
commit
d6ddbe4efe
2 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue