FACT++  1.0
void unpublishCharItemList ( )

Definition at line 4166 of file feeserver.c.

References dis_remove_service, and firstCharNode.

Referenced by initialize().

4166  {
4167  CharItemNode* current = 0;
4168 
4169  current = firstCharNode;
4170  while (current != 0) {
4171  dis_remove_service(current->id);
4172  current = current->next;
4173  }
4174  // pretending CharItemList is completely empty to avoid access
4175  // to not existing DIM services. Don't delete charItems, CE might still
4176  // try to access their content (same for float and int lists)
4177  charNodesAmount = 0;
4178  firstCharNode = 0;
4179  lastCharNode = 0;
4180 }
#define dis_remove_service
Definition: dis.h:19
static unsigned int charNodesAmount
-— NEW FEATURE SINCE VERSION 0.8.2b [Char Channel] (2007-07-28) –— ///
Definition: feeserver.c:331
static CharItemNode * lastCharNode
Definition: feeserver.c:343
static CharItemNode * firstCharNode
Definition: feeserver.c:337

+ Here is the caller graph for this function: