new function winDebug which logs messages with verbosity level 3

This commit is contained in:
Alexander Gottwald 2004-04-13 19:24:39 +00:00
parent 4ee077c887
commit 162a45d3aa
2 changed files with 10 additions and 0 deletions

View file

@ -92,3 +92,12 @@ winErrorFVerb (int verb, const char *format, ...)
LogVMessageVerb(X_NONE, verb, format, ap);
va_end (ap);
}
void
winDebug (const char *format, ...)
{
va_list ap;
va_start (ap, format);
LogVMessageVerb(X_NONE, 3, format, ap);
va_end (ap);
}

View file

@ -41,6 +41,7 @@ void winDrvMsgVerb (int scrnIndex,
void winDrvMsg (int scrnIndex, MessageType type, const char *format, ...);
void winMsgVerb (MessageType type, int verb, const char *format, ...);
void winMsg (MessageType type, const char *format, ...);
void winDebug (const char *format, ...);
void winErrorFVerb (int verb, const char *format, ...);