/////////////////////////////////////////////////////////////////////////////
// Name: defs.h
-// Purpose: documentation for global functions
+// Purpose: interface of global functions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
//@}
/**
- This macro is similar to wxDEPRECATED but can be used
+ This macro is similar to wxDEPRECATED() but can be used
to not only declare the function @a func as deprecated but to also provide
its (inline) implementation @e body.
It can be used as following:
void wxVaCopy(va_list argptrDst, va_list argptrSrc);
/**
- This is a special version of wxDEPRECATED macro which
+ This is a special version of wxDEPRECATED() macro which
only does something when the deprecated function is used from the code outside
wxWidgets itself but doesn't generate warnings when it is used from wxWidgets.
It is used with the virtual functions which are called by the library itself --