mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-09 11:30:51 +00:00
misc wording
This commit is contained in:
parent
ceb9a38be5
commit
0c3d8f5f70
1 changed files with 6 additions and 6 deletions
|
@ -34,13 +34,13 @@
|
||||||
glib for Str.h (Str class)
|
glib for Str.h (Str class)
|
||||||
|
|
||||||
this is a utility library, it provides typical synapse client and server
|
this is a utility library, it provides typical synapse client and server
|
||||||
could be split into two independant libraries actually, the server part and the client part
|
could be split into two independent libraries actually, the server part and the client part
|
||||||
(that's just a matter of reducing binary size)
|
(that's just a matter of reducing binary size)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// compile time settings
|
// compile time settings
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
#define SYNAPSE_VERBOSE // be verbosive about the loading process
|
#define SYNAPSE_VERBOSE // be verbose about the loading process
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ydnar: required for os x
|
// ydnar: required for os x
|
||||||
|
@ -166,11 +166,11 @@ typedef struct XMLConfigEntry_s {
|
||||||
/*!
|
/*!
|
||||||
\class CSynapseAPIManager
|
\class CSynapseAPIManager
|
||||||
derive from this class if you want to manage several APIs through the same object
|
derive from this class if you want to manage several APIs through the same object
|
||||||
(typically, loading plugins, or an unknown number of APIs that match some criterions)
|
(typically, loading plugins, or an unknown number of APIs that match some criteria)
|
||||||
this class has some pure virtual members that need to be implemented by the childs
|
this class has some pure virtual members that need to be implemented by the childs
|
||||||
|
|
||||||
we deal with two types of API managers:
|
we deal with two types of API managers:
|
||||||
- the 'loose' ones have a matching pattern and load everything that matches criterions
|
- the 'loose' ones have a matching pattern and load everything that matches criteria
|
||||||
typically used for plugins
|
typically used for plugins
|
||||||
- the 'list' ones have a fixed list of things they require. They are used to provide
|
- the 'list' ones have a fixed list of things they require. They are used to provide
|
||||||
easy access to multiple interfaces
|
easy access to multiple interfaces
|
||||||
|
@ -550,7 +550,7 @@ void TryPushStack( APIDescriptor_t * );
|
||||||
(i.e. it was not used at all during startup, or we have properly done a 'release' already)
|
(i.e. it was not used at all during startup, or we have properly done a 'release' already)
|
||||||
we scan the mStack for the SYN_REQUIRE that this client owns, and remove them
|
we scan the mStack for the SYN_REQUIRE that this client owns, and remove them
|
||||||
\param iSlot is an mClients iterator, invalid when the function returns as the item will have been removed from the list
|
\param iSlot is an mClients iterator, invalid when the function returns as the item will have been removed from the list
|
||||||
\return the iterator afer erase call so that the caller iteration can continue
|
\return the iterator after erase call so that the caller iteration can continue
|
||||||
*/
|
*/
|
||||||
list<CSynapseClientSlot>::iterator ShutdownClient( list<CSynapseClientSlot>::iterator iSlot );
|
list<CSynapseClientSlot>::iterator ShutdownClient( list<CSynapseClientSlot>::iterator iSlot );
|
||||||
|
|
||||||
|
@ -587,7 +587,7 @@ void EnumerateBuiltinModule( CSynapseBuiltinClient * );
|
||||||
\brief resolve the function table loading for this client
|
\brief resolve the function table loading for this client
|
||||||
if the client is not listed in the known slots yet, it will be added
|
if the client is not listed in the known slots yet, it will be added
|
||||||
wraps around internal DoResolve implementation to unload the unused modules
|
wraps around internal DoResolve implementation to unload the unused modules
|
||||||
\return wether the resolution has been successful
|
\return whether the resolution has been successful
|
||||||
*/
|
*/
|
||||||
bool Resolve( CSynapseClient *pClient );
|
bool Resolve( CSynapseClient *pClient );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue