15 lines
461 B
C
15 lines
461 B
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: atomic.h
|
||
|
// Purpose: documentation for global functions
|
||
|
// Author: wxWidgets team
|
||
|
// RCS-ID: $Id$
|
||
|
// Licence: wxWindows license
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
/**
|
||
|
This function increments @e value in an atomic manner.
|
||
|
*/
|
||
|
void wxAtomicInc(wxAtomicInt& value);
|
||
|
|
||
|
|
||
|
|