From 438444cdd60ef78e457a92d6a9a026c69ad72c03 Mon Sep 17 00:00:00 2001 From: izydorst Date: Fri, 8 Mar 2002 16:53:02 +0000 Subject: [PATCH] added declarations for cpputs and cpputsxy git-svn-id: svn://svn.cc65.org/cc65/trunk@1182 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/geos/ggraph.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/geos/ggraph.h b/include/geos/ggraph.h index d59947157..a2c6b0062 100644 --- a/include/geos/ggraph.h +++ b/include/geos/ggraph.h @@ -13,6 +13,9 @@ #include #endif +void __fastcall__ cpputs(char *s); +void __fastcall__ cpputsxy(int x, int y, char *s); + void __fastcall__ SetPattern(char newpattern); void __fastcall__ HorizontalLine(char pattern, char y, int xstart, int xend);