]> git.saurik.com Git - wxWidgets.git/blame - include/wx/log.h
implement support for returning several elements at once from IEnumFORMATETC (part...
[wxWidgets.git] / include / wx / log.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8ca28fb7 2// Name: wx/log.h
c801d85f
KB
3// Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs)
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
371a5b4e 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
886dd7d2
VZ
12#ifndef _WX_LOG_H_
13#define _WX_LOG_H_
c801d85f 14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
d6b9496a 16 #pragma interface "log.h"
0d3820b3 17#endif
c801d85f 18
df5168c4 19#include "wx/defs.h"
38830220 20
886dd7d2
VZ
21#if wxUSE_LOG
22
df5168c4
MB
23#include "wx/string.h"
24#include "wx/arrstr.h"
25
546db2a8
VZ
26// ----------------------------------------------------------------------------
27// forward declarations
28// ----------------------------------------------------------------------------
29
886dd7d2 30#if wxUSE_GUI
bddd7a8d
VZ
31 class WXDLLIMPEXP_CORE wxTextCtrl;
32 class WXDLLIMPEXP_CORE wxLogFrame;
33 class WXDLLIMPEXP_CORE wxFrame;
886dd7d2 34#endif // wxUSE_GUI
546db2a8
VZ
35
36// ----------------------------------------------------------------------------
37// types
38// ----------------------------------------------------------------------------
39
40typedef unsigned long wxTraceMask;
41typedef unsigned long wxLogLevel;
42
43// ----------------------------------------------------------------------------
44// headers
45// ----------------------------------------------------------------------------
46
0e0126c2 47#ifndef __WXWINCE__
c30aaf75 48#include <time.h> // for time_t
0e0126c2 49#endif
c30aaf75
VZ
50
51#include "wx/dynarray.h"
d6b9496a 52
edc73852
RD
53#ifndef wxUSE_LOG_DEBUG
54# ifdef __WXDEBUG__
55# define wxUSE_LOG_DEBUG 1
56# else // !__WXDEBUG__
57# define wxUSE_LOG_DEBUG 0
58# endif
59#endif
60
9ef3052c
VZ
61// ----------------------------------------------------------------------------
62// constants
63// ----------------------------------------------------------------------------
64
65// different standard log levels (you may also define your own)
66enum
67{
d6b9496a
VZ
68 wxLOG_FatalError, // program can't continue, abort immediately
69 wxLOG_Error, // a serious error, user must be informed about it
70 wxLOG_Warning, // user is normally informed about it but may be ignored
71 wxLOG_Message, // normal message (i.e. normal output of a non GUI app)
d6b9496a 72 wxLOG_Status, // informational: might go to the status line of GUI app
edc73852 73 wxLOG_Info, // informational message (a.k.a. 'Verbose')
d6b9496a
VZ
74 wxLOG_Debug, // never shown to the user, disabled in release mode
75 wxLOG_Trace, // trace messages are also only enabled in debug mode
76 wxLOG_Progress, // used for progress indicator (not yet)
edc73852 77 wxLOG_User = 100, // user defined levels start here
65ca8c0b 78 wxLOG_Max = 10000
9ef3052c
VZ
79};
80
d6b9496a
VZ
81// symbolic trace masks - wxLogTrace("foo", "some trace message...") will be
82// discarded unless the string "foo" has been added to the list of allowed
83// ones with AddTraceMask()
84
08298395
OK
85#define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete)
86#define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks
87#define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation
88#define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations
d6b9496a
VZ
89
90#ifdef __WXMSW__
08298395 91 #define wxTRACE_OleCalls wxT("ole") // OLE interface calls
d6b9496a
VZ
92#endif
93
94// the trace masks have been superceded by symbolic trace constants, they're
95// for compatibility only andwill be removed soon - do NOT use them
96
9ef3052c
VZ
97// meaning of different bits of the trace mask (which allows selectively
98// enable/disable some trace messages)
99#define wxTraceMemAlloc 0x0001 // trace memory allocation (new/delete)
100#define wxTraceMessages 0x0002 // trace window messages/X callbacks
101#define wxTraceResAlloc 0x0004 // trace GDI resource allocation
102#define wxTraceRefCount 0x0008 // trace various ref counting operations
103
2049ba38 104#ifdef __WXMSW__
d6b9496a 105 #define wxTraceOleCalls 0x0100 // OLE interface calls
9ef3052c
VZ
106#endif
107
65f19af1 108#include "wx/iosfwrap.h"
470b7da3 109
c801d85f
KB
110// ----------------------------------------------------------------------------
111// derive from this class to redirect (or suppress, or ...) log messages
112// normally, only a single instance of this class exists but it's not enforced
c801d85f 113// ----------------------------------------------------------------------------
d6b9496a 114
bddd7a8d 115class WXDLLIMPEXP_BASE wxLog
c801d85f
KB
116{
117public:
d6b9496a
VZ
118 // ctor
119 wxLog();
120
04662def
RL
121 // Internal buffer.
122 // Allow replacement of the fixed size static buffer with
123 // a user allocated one. Pass in NULL to restore the
124 // built in static buffer.
125 static wxChar *SetLogBuffer( wxChar *buf, size_t size = 0 );
126
d6b9496a
VZ
127 // these functions allow to completely disable all log messages
128 // is logging disabled now?
129 static bool IsEnabled() { return ms_doLog; }
130 // change the flag state, return the previous one
131 static bool EnableLogging(bool doIt = TRUE)
132 { bool doLogOld = ms_doLog; ms_doLog = doIt; return doLogOld; }
133
134 // static sink function - see DoLog() for function to overload in the
135 // derived classes
9e3d3318 136 static void OnLog(wxLogLevel level, const wxChar *szString, time_t t)
d6b9496a 137 {
edc73852 138 if ( IsEnabled() && ms_logLevel >= level ) {
d6b9496a
VZ
139 wxLog *pLogger = GetActiveTarget();
140 if ( pLogger )
141 pLogger->DoLog(level, szString, t);
142 }
803bf1c5 143 }
d6b9496a
VZ
144
145 // message buffering
146 // flush shows all messages if they're not logged immediately (FILE
147 // and iostream logs don't need it, but wxGuiLog does to avoid showing
148 // 17 modal dialogs one after another)
149 virtual void Flush();
d6b9496a 150
bbfa0322
VZ
151 // flush the active target if any
152 static void FlushActive()
153 {
2ed3265e
VZ
154 if ( !ms_suspendCount )
155 {
156 wxLog *log = GetActiveTarget();
1ec5cbf3 157 if ( log )
2ed3265e
VZ
158 log->Flush();
159 }
bbfa0322 160 }
1ec5cbf3
VZ
161
162 // only one sink is active at each moment
d6b9496a
VZ
163 // get current log target, will call wxApp::CreateLogTarget() to
164 // create one if none exists
165 static wxLog *GetActiveTarget();
166 // change log target, pLogger may be NULL
167 static wxLog *SetActiveTarget(wxLog *pLogger);
168
2ed3265e
VZ
169 // suspend the message flushing of the main target until the next call
170 // to Resume() - this is mainly for internal use (to prevent wxYield()
171 // from flashing the messages)
172 static void Suspend() { ms_suspendCount++; }
173 // must be called for each Suspend()!
174 static void Resume() { ms_suspendCount--; }
175
d6b9496a
VZ
176 // functions controlling the default wxLog behaviour
177 // verbose mode is activated by standard command-line '-verbose'
178 // option
fd7718b2 179 static void SetVerbose(bool bVerbose = TRUE) { ms_bVerbose = bVerbose; }
edc73852
RD
180
181 // Set log level. Log messages with level > logLevel will not be logged.
182 static void SetLogLevel(wxLogLevel logLevel) { ms_logLevel = logLevel; }
183
d6b9496a
VZ
184 // should GetActiveTarget() try to create a new log object if the
185 // current is NULL?
36bd6902 186 static void DontCreateOnDemand();
d6b9496a
VZ
187
188 // trace mask (see wxTraceXXX constants for details)
189 static void SetTraceMask(wxTraceMask ulMask) { ms_ulTraceMask = ulMask; }
190 // add string trace mask
df5168c4
MB
191 static void AddTraceMask(const wxString& str)
192 { ms_aTraceMasks.push_back(str); }
d6b9496a
VZ
193 // add string trace mask
194 static void RemoveTraceMask(const wxString& str);
36bd6902
VZ
195 // remove all string trace masks
196 static void ClearTraceMasks();
0e080be6
RL
197 // get string trace masks
198 static const wxArrayString &GetTraceMasks() { return ms_aTraceMasks; }
d6b9496a 199
d2e1ef19
VZ
200 // sets the timestamp string: this is used as strftime() format string
201 // for the log targets which add time stamps to the messages - set it
202 // to NULL to disable time stamping completely.
203 static void SetTimestamp(const wxChar *ts) { ms_timestamp = ts; }
204
edc73852 205
d6b9496a
VZ
206 // accessors
207 // gets the verbose status
fd7718b2 208 static bool GetVerbose() { return ms_bVerbose; }
d6b9496a
VZ
209 // get trace mask
210 static wxTraceMask GetTraceMask() { return ms_ulTraceMask; }
211 // is this trace mask in the list?
df5168c4 212 static bool IsAllowedTraceMask(const wxChar *mask);
edc73852
RD
213 // return the current loglevel limit
214 static wxLogLevel GetLogLevel() { return ms_logLevel; }
d6b9496a 215
d2e1ef19
VZ
216 // get the current timestamp format string (may be NULL)
217 static const wxChar *GetTimestamp() { return ms_timestamp; }
218
edc73852 219
d2e1ef19
VZ
220 // helpers
221 // put the time stamp into the string if ms_timestamp != NULL (don't
222 // change it otherwise)
223 static void TimeStamp(wxString *str);
224
d6b9496a
VZ
225 // make dtor virtual for all derived classes
226 virtual ~wxLog() { }
c801d85f 227
c801d85f 228
1ec5cbf3 229 // this method exists for backwards compatibility only, don't use
dc259b79 230 bool HasPendingMessages() const { return TRUE; }
1ec5cbf3
VZ
231
232protected:
d6b9496a
VZ
233 // the logging functions that can be overriden
234 // default DoLog() prepends the time stamp and a prefix corresponding
235 // to the message to szString and then passes it to DoLogString()
9e3d3318 236 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t);
d6b9496a
VZ
237 // default DoLogString does nothing but is not pure virtual because if
238 // you override DoLog() you might not need it at all
9e3d3318 239 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 240
d6b9496a
VZ
241private:
242 // static variables
243 // ----------------
06db8ebd 244
d6b9496a
VZ
245 static wxLog *ms_pLogger; // currently active log sink
246 static bool ms_doLog; // FALSE => all logging disabled
247 static bool ms_bAutoCreate; // create new log targets on demand?
fd7718b2 248 static bool ms_bVerbose; // FALSE => ignore LogInfo messages
fe7b1156 249
edc73852
RD
250 static wxLogLevel ms_logLevel; // limit logging to levels <= ms_logLevel
251
2ed3265e
VZ
252 static size_t ms_suspendCount; // if positive, logs are not flushed
253
d2e1ef19
VZ
254 // format string for strftime(), if NULL, time stamping log messages is
255 // disabled
256 static const wxChar *ms_timestamp;
257
d6b9496a
VZ
258 static wxTraceMask ms_ulTraceMask; // controls wxLogTrace behaviour
259 static wxArrayString ms_aTraceMasks; // more powerful filter for wxLogTrace
c801d85f
KB
260};
261
262// ----------------------------------------------------------------------------
263// "trivial" derivations of wxLog
264// ----------------------------------------------------------------------------
265
266// log everything to a "FILE *", stderr by default
bddd7a8d 267class WXDLLIMPEXP_BASE wxLogStderr : public wxLog
c801d85f 268{
be52b341 269 DECLARE_NO_COPY_CLASS(wxLogStderr)
64bea2bf 270
c801d85f 271public:
d6b9496a
VZ
272 // redirect log output to a FILE
273 wxLogStderr(FILE *fp = (FILE *) NULL);
c801d85f 274
03147cd0 275protected:
d6b9496a 276 // implement sink function
9e3d3318 277 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 278
d6b9496a 279 FILE *m_fp;
c801d85f
KB
280};
281
4bf78aae 282#if wxUSE_STD_IOSTREAM
03147cd0 283
c801d85f 284// log everything to an "ostream", cerr by default
bddd7a8d 285class WXDLLIMPEXP_BASE wxLogStream : public wxLog
c801d85f
KB
286{
287public:
d6b9496a 288 // redirect log output to an ostream
dd107c50 289 wxLogStream(wxSTD ostream *ostr = (wxSTD ostream *) NULL);
c801d85f
KB
290
291protected:
d6b9496a 292 // implement sink function
9e3d3318 293 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 294
d6b9496a 295 // using ptr here to avoid including <iostream.h> from this file
dd107c50 296 wxSTD ostream *m_ostr;
c801d85f 297};
03147cd0
VZ
298
299#endif // wxUSE_STD_IOSTREAM
c801d85f 300
03147cd0
VZ
301// ----------------------------------------------------------------------------
302// /dev/null log target: suppress logging until this object goes out of scope
303// ----------------------------------------------------------------------------
304
305// example of usage:
306/*
307 void Foo()
308 {
309 wxFile file;
310
311 // wxFile.Open() normally complains if file can't be opened, we don't
312 // want it
313 wxLogNull logNo;
314
315 if ( !file.Open("bar") )
316 ... process error ourselves ...
317
318 // ~wxLogNull called, old log sink restored
319 }
320 */
bddd7a8d 321class WXDLLIMPEXP_BASE wxLogNull
03147cd0
VZ
322{
323public:
be52b341
GD
324 wxLogNull() : m_flagOld(wxLog::EnableLogging(FALSE)) { }
325 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld); }
03147cd0
VZ
326
327private:
328 bool m_flagOld; // the previous value of the wxLog::ms_doLog
329};
330
331// ----------------------------------------------------------------------------
332// chaining log target: installs itself as a log target and passes all
333// messages to the real log target given to it in the ctor but also forwards
334// them to the previously active one
335//
336// note that you don't have to call SetActiveTarget() with this class, it
337// does it itself in its ctor
338// ----------------------------------------------------------------------------
339
bddd7a8d 340class WXDLLIMPEXP_BASE wxLogChain : public wxLog
03147cd0
VZ
341{
342public:
343 wxLogChain(wxLog *logger);
8b30a4e4 344 virtual ~wxLogChain();
03147cd0
VZ
345
346 // change the new log target
347 void SetLog(wxLog *logger);
348
349 // this can be used to temporarily disable (and then reenable) passing
350 // messages to the old logger (by default we do pass them)
351 void PassMessages(bool bDoPass) { m_bPassMessages = bDoPass; }
352
353 // are we passing the messages to the previous log target?
354 bool IsPassingMessages() const { return m_bPassMessages; }
355
356 // return the previous log target (may be NULL)
357 wxLog *GetOldLog() const { return m_logOld; }
358
359 // override base class version to flush the old logger as well
360 virtual void Flush();
361
362protected:
363 // pass the chain to the old logger if needed
364 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t);
365
366private:
367 // the current log target
368 wxLog *m_logNew;
369
370 // the previous log target
371 wxLog *m_logOld;
372
373 // do we pass the messages to the old logger?
374 bool m_bPassMessages;
22f3361e
VZ
375
376 DECLARE_NO_COPY_CLASS(wxLogChain)
03147cd0
VZ
377};
378
379// a chain log target which uses itself as the new logger
bddd7a8d 380class WXDLLIMPEXP_BASE wxLogPassThrough : public wxLogChain
03147cd0
VZ
381{
382public:
93d4c1d0 383 wxLogPassThrough();
03147cd0
VZ
384};
385
8ca28fb7 386#if wxUSE_GUI
7e8c564c
VS
387 // include GUI log targets:
388 #include "wx/generic/logg.h"
e90c1d2a 389#endif // wxUSE_GUI
03f38c58 390
c801d85f
KB
391// ============================================================================
392// global functions
393// ============================================================================
394
395// ----------------------------------------------------------------------------
396// Log functions should be used by application instead of stdio, iostream &c
397// for log messages for easy redirection
398// ----------------------------------------------------------------------------
399
88ac883a
VZ
400// ----------------------------------------------------------------------------
401// get error code/error message from system in a portable way
402// ----------------------------------------------------------------------------
403
404// return the last system error code
bddd7a8d 405WXDLLIMPEXP_BASE unsigned long wxSysErrorCode();
c11d62a6 406
88ac883a 407// return the error message for given (or last if 0) error code
bddd7a8d 408WXDLLIMPEXP_BASE const wxChar* wxSysErrorMsg(unsigned long nErrCode = 0);
88ac883a 409
c11d62a6 410// ----------------------------------------------------------------------------
c801d85f 411// define wxLog<level>
c11d62a6 412// ----------------------------------------------------------------------------
c801d85f 413
886dd7d2 414#define DECLARE_LOG_FUNCTION(level) \
bddd7a8d 415extern void WXDLLIMPEXP_BASE wxVLog##level(const wxChar *szFormat, \
886dd7d2 416 va_list argptr); \
bddd7a8d 417extern void WXDLLIMPEXP_BASE wxLog##level(const wxChar *szFormat, \
7357f981 418 ...) ATTRIBUTE_PRINTF_1
886dd7d2
VZ
419#define DECLARE_LOG_FUNCTION2_EXP(level, arg, expdecl) \
420extern void expdecl wxVLog##level(arg, const wxChar *szFormat, \
421 va_list argptr); \
422extern void expdecl wxLog##level(arg, const wxChar *szFormat, \
7357f981 423 ...) ATTRIBUTE_PRINTF_2
886dd7d2 424#define DECLARE_LOG_FUNCTION2(level, arg) \
bddd7a8d 425 DECLARE_LOG_FUNCTION2_EXP(level, arg, WXDLLIMPEXP_BASE)
a1530845 426
88ac883a
VZ
427#else // !wxUSE_LOG
428
429// log functions do nothing at all
886dd7d2
VZ
430#define DECLARE_LOG_FUNCTION(level) \
431inline void wxVLog##level(const wxChar *szFormat, \
432 va_list argptr) { } \
433inline void wxLog##level(const wxChar *szFormat, ...) { }
434#define DECLARE_LOG_FUNCTION2(level, arg) \
435inline void wxVLog##level(arg, const wxChar *szFormat, \
436 va_list argptr) {} \
437inline void wxLog##level(arg, const wxChar *szFormat, ...) { }
88ac883a 438
e30285ab 439// Empty Class to fake wxLogNull
bddd7a8d 440class WXDLLIMPEXP_BASE wxLogNull
e30285ab
VZ
441{
442public:
886dd7d2 443 wxLogNull() { }
e30285ab
VZ
444};
445
446// Dummy macros to replace some functions.
447#define wxSysErrorCode() (unsigned long)0
448#define wxSysErrorMsg( X ) (const wxChar*)NULL
449
450// Fake symbolic trace masks... for those that are used frequently
451#define wxTRACE_OleCalls wxT("") // OLE interface calls
452
88ac883a 453#endif // wxUSE_LOG/!wxUSE_LOG
c801d85f 454
88ac883a
VZ
455// a generic function for all levels (level is passes as parameter)
456DECLARE_LOG_FUNCTION2(Generic, wxLogLevel level);
c801d85f 457
88ac883a
VZ
458// one function per each level
459DECLARE_LOG_FUNCTION(FatalError);
460DECLARE_LOG_FUNCTION(Error);
461DECLARE_LOG_FUNCTION(Warning);
462DECLARE_LOG_FUNCTION(Message);
463DECLARE_LOG_FUNCTION(Info);
464DECLARE_LOG_FUNCTION(Verbose);
470b7da3 465
88ac883a
VZ
466// this function sends the log message to the status line of the top level
467// application frame, if any
468DECLARE_LOG_FUNCTION(Status);
470b7da3 469
886dd7d2
VZ
470#if wxUSE_GUI
471 // this one is the same as previous except that it allows to explicitly
472 // specify the frame to which the output should go
bddd7a8d 473 DECLARE_LOG_FUNCTION2_EXP(Status, wxFrame *pFrame, WXDLLIMPEXP_CORE);
886dd7d2 474#endif // wxUSE_GUI
c801d85f 475
88ac883a
VZ
476// additional one: as wxLogError, but also logs last system call error code
477// and the corresponding error message if available
478DECLARE_LOG_FUNCTION(SysError);
c801d85f 479
88ac883a
VZ
480// and another one which also takes the error code (for those broken APIs
481// that don't set the errno (like registry APIs in Win32))
482DECLARE_LOG_FUNCTION2(SysError, long lErrCode);
483
484// debug functions do nothing in release mode
edc73852 485#if wxUSE_LOG_DEBUG
d6b9496a
VZ
486 DECLARE_LOG_FUNCTION(Debug);
487
ea44a631 488 // first kind of LogTrace is unconditional: it doesn't check the level,
d6b9496a
VZ
489 DECLARE_LOG_FUNCTION(Trace);
490
491 // this second version will only log the message if the mask had been
492 // added to the list of masks with AddTraceMask()
f6bcfd97 493 DECLARE_LOG_FUNCTION2(Trace, const wxChar *mask);
9ef3052c 494
d6b9496a
VZ
495 // the last one does nothing if all of level bits are not set
496 // in wxLog::GetActive()->GetTraceMask() - it's deprecated in favour of
497 // string identifiers
498 DECLARE_LOG_FUNCTION2(Trace, wxTraceMask mask);
9ef3052c 499#else //!debug
d6b9496a 500 // these functions do nothing in release builds
1d63fd6b 501 inline void wxVLogDebug(const wxChar *, va_list) { }
9e3d3318 502 inline void wxLogDebug(const wxChar *, ...) { }
1d63fd6b 503 inline void wxVLogTrace(const wxChar *, va_list) { }
9e3d3318 504 inline void wxLogTrace(const wxChar *, ...) { }
1d63fd6b 505 inline void wxVLogTrace(wxTraceMask, const wxChar *, va_list) { }
9e3d3318 506 inline void wxLogTrace(wxTraceMask, const wxChar *, ...) { }
1d63fd6b 507 inline void wxVLogTrace(const wxChar *, const wxChar *, va_list) { }
9e3d3318 508 inline void wxLogTrace(const wxChar *, const wxChar *, ...) { }
88ac883a 509#endif // debug/!debug
c801d85f 510
c11d62a6
VZ
511// wxLogFatalError helper: show the (fatal) error to the user in a safe way,
512// i.e. without using wxMessageBox() for example because it could crash
bddd7a8d 513void WXDLLIMPEXP_BASE
886dd7d2 514wxSafeShowMessage(const wxString& title, const wxString& text);
c11d62a6 515
88ac883a
VZ
516// ----------------------------------------------------------------------------
517// debug only logging functions: use them with API name and error code
518// ----------------------------------------------------------------------------
c801d85f 519
e90babdf 520#ifdef __WXDEBUG__
42e69d6b
VZ
521 // make life easier for people using VC++ IDE: clicking on the message
522 // will take us immediately to the place of the failed API
523#ifdef __VISUALC__
4b7f2165
VZ
524 #define wxLogApiError(api, rc) \
525 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
8b94d999
VZ
526 __TFILE__, __LINE__, api, \
527 (long)rc, wxSysErrorMsg(rc))
42e69d6b 528#else // !VC++
4b7f2165
VZ
529 #define wxLogApiError(api, rc) \
530 wxLogDebug(wxT("In file %s at line %d: '%s' failed with " \
8b94d999
VZ
531 "error 0x%08lx (%s)."), \
532 __TFILE__, __LINE__, api, \
533 (long)rc, wxSysErrorMsg(rc))
42e69d6b
VZ
534#endif // VC++/!VC++
535
536 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
537
c801d85f 538#else //!debug
9e3d3318
OK
539 inline void wxLogApiError(const wxChar *, long) { }
540 inline void wxLogLastError(const wxChar *) { }
c801d85f
KB
541#endif //debug/!debug
542
34138703 543#endif // _WX_LOG_H_
04662def 544