change prototype for GraphicsString() to void __fastcall__ GraphicsString(const void *myGfxString);
This commit is contained in:
parent
d14148ab4f
commit
6d560f4236
3 changed files with 3 additions and 3 deletions
|
@ -205,7 +205,7 @@ see them together in the filling box in GeoPaint.
|
||||||
|
|
||||||
<sect2>GraphicsString
|
<sect2>GraphicsString
|
||||||
<p>
|
<p>
|
||||||
<tt/void GraphicsString (char *myGString)/
|
<tt/void GraphicsString (const void *myGString)/
|
||||||
<p>
|
<p>
|
||||||
One of the more powerfull routines of GEOS. This function calls other graphic functions depending
|
One of the more powerfull routines of GEOS. This function calls other graphic functions depending
|
||||||
on the given command string. See the structures chapter for a more detailed description.
|
on the given command string. See the structures chapter for a more detailed description.
|
||||||
|
|
|
@ -43,7 +43,7 @@ void __fastcall__ BitOtherClip(void *proc1, void *proc2, char skipl,
|
||||||
char skipr, unsigned skiptop,
|
char skipr, unsigned skiptop,
|
||||||
struct iconpic *myIcon);
|
struct iconpic *myIcon);
|
||||||
|
|
||||||
void __fastcall__ GraphicsString(char *myGfxString);
|
void __fastcall__ GraphicsString(const void *myGfxString);
|
||||||
|
|
||||||
#ifdef __GEOS_CBM__
|
#ifdef __GEOS_CBM__
|
||||||
void SetNewMode(void);
|
void SetNewMode(void);
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
;
|
;
|
||||||
; 25.12.99
|
; 25.12.99
|
||||||
|
|
||||||
; void GraphicsString (char *myString);
|
; void GraphicsString (const void *myString);
|
||||||
|
|
||||||
.export _GraphicsString
|
.export _GraphicsString
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue