New function winTrace
This commit is contained in:
Alexander Gottwald 2005-02-12 14:28:23 +00:00
parent ee02a83013
commit 38806526bb
3 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-02-12 Alexander Gottwald <ago at freedesktop dot org>
* winmsg.h
* winmsg.c:
New function winTrace
2005-02-08 Alexander Gottwald <ago at freedesktop dot org>
* winkeybd.c:

View file

@ -102,6 +102,15 @@ winDebug (const char *format, ...)
va_end (ap);
}
void
winTrace (const char *format, ...)
{
va_list ap;
va_start (ap, format);
LogVMessageVerb(X_NONE, 10, format, ap);
va_end (ap);
}
void
winW32Error(int verb, const char *msg)
{

View file

@ -42,6 +42,7 @@ 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 winTrace (const char *format, ...);
void winErrorFVerb (int verb, const char *format, ...);
void winW32Error(int verb, const char *message);