mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
25 lines
617 B
Plaintext
25 lines
617 B
Plaintext
$NetBSD: patch-paint_h,v 1.1 2012/07/30 03:33:12 dholland Exp $
|
|
|
|
- declare a couple of external functions properly
|
|
|
|
--- paint.h~ 2004-05-05 08:30:35.000000000 +0000
|
|
+++ paint.h
|
|
@@ -66,6 +66,8 @@ Col *makemap(Height *a, Height *b, Heigh
|
|
Col *camera(Height *a, Height *b, Height *shadow);
|
|
Col *mirror(Height *a, Height *b, Height *shadow);
|
|
int project( int x , Height y );
|
|
+void init_parameters(void);
|
|
+void finish_artist(void);
|
|
#else
|
|
void set_clut();
|
|
Height *extract();
|
|
@@ -75,6 +77,8 @@ Col *makemap();
|
|
Col *camera();
|
|
Col *mirror();
|
|
int project();
|
|
+void init_parameters();
|
|
+void finish_artist();
|
|
#endif
|
|
|
|
|