Load prolog.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14863 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2002-10-29 03:46:39 +00:00
parent 3766e95ce1
commit 6b65871481
9 changed files with 47 additions and 12 deletions

View file

@ -1384,14 +1384,14 @@ NSGraphicsContext *GSCurrentContext()
/* ----------------------------------------------------------------------- */
/** Write the string (with printf substitutions) to a PostScript context.
Other output contexts will likely ignore this */
- (void) DPSPrintf: (char *)fmt : (va_list)args
- (void) DPSPrintf: (const char *)fmt : (va_list)args
{
[self subclassResponsibility: _cmd];
}
/** Write the encoded data to a PostScript context.
Other output contexts will likely ignore this */
- (void) DPSWriteData: (char *)buf : (unsigned int)count
- (void) DPSWriteData: (const char *)buf : (unsigned int)count
{
[self subclassResponsibility: _cmd];
}