Removed docs for old clipboard functions, and reviewed/fixed atomic ops, file & directory, and environment function categories.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -14,17 +14,15 @@
|
||||
When using multi-threaded applications, it is often required to access or
|
||||
modify memory which is shared between threads. Atomic integer and pointer
|
||||
operations are an efficient way to handle this issue (another, less efficient,
|
||||
way is to use a mutex or critical section). A native implementation exists for
|
||||
Windows, Linux, Solaris and Mac OS X, for other OS, a wxCriticalSection is used
|
||||
to protect the data.
|
||||
way is to use a wxMutex or wxCriticalSection). A native implementation exists
|
||||
for Windows, Linux, Solaris and Mac OS X; for others, a wxCriticalSection is
|
||||
used to protect the data.
|
||||
|
||||
One particular application is reference counting (used by so-called smart
|
||||
pointers).
|
||||
One particular application is reference counting (used by so-called
|
||||
@ref group_class_smartpointers "smart pointers").
|
||||
|
||||
You should define your variable with the type wxAtomicInt in order to apply
|
||||
atomic operations to it.
|
||||
|
||||
@header{wx/atomic.h}
|
||||
|
||||
*/
|
||||
|
||||
|
@@ -1,21 +0,0 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: funcmacro_clipboard.h
|
||||
// Purpose: Clipboard function and macro group docs
|
||||
// Author: wxWidgets team
|
||||
// RCS-ID: $Id: funcmacro_gdi.h 52454 2008-03-12 19:08:48Z BP $
|
||||
// Licence: wxWindows license
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
|
||||
@defgroup group_funcmacro_clipboard Clipboard
|
||||
@ingroup group_funcmacro
|
||||
|
||||
@warning These functions are deprecated, use the wxClipboard class instead.
|
||||
|
||||
These clipboard functions are implemented for Windows only.
|
||||
|
||||
@header{wx/clipbrd.h}
|
||||
|
||||
*/
|
||||
|
@@ -11,11 +11,9 @@
|
||||
@defgroup group_funcmacro_env Environment
|
||||
@ingroup group_funcmacro
|
||||
|
||||
The functions in this section allow to access (get) or change value of
|
||||
environment variables in a portable way. They are currently implemented under
|
||||
Win32 and POSIX-like systems (Unix).
|
||||
|
||||
@header{wx/utils.h}
|
||||
These functions allow access to get or change the values of environment
|
||||
variables in a portable way. They are currently implemented under Win32 and
|
||||
POSIX-like systems (Unix).
|
||||
|
||||
*/
|
||||
|
||||
|
@@ -11,9 +11,10 @@
|
||||
@defgroup group_funcmacro_file Files and Directories
|
||||
@ingroup group_funcmacro
|
||||
|
||||
@header{wx/filefn.h}
|
||||
These functions provide a platform-independent API for common file and
|
||||
directory functionality.
|
||||
|
||||
@sa wxPathList, wxDir, wxFile, wxFileName
|
||||
@see wxPathList, wxDir, wxFile, wxFileName
|
||||
|
||||
*/
|
||||
|
||||
|
Reference in New Issue
Block a user