SemysOptionEntry

01
typedef struct tagSemysOptionEntry
{
  char const *mpName;
  uint32 mNameLen;
  char const *mpValue;
  uint32 mValueLen;
} SemysOptionEntry;
02 Members:
  • mpName: Pointing to the start of the name of the option entry.
  • mNameLen: How many characters the name has.
  • mpValue: Pointing to the start of the value of the option entry.
  • mValueLen: How many characters the value has.
03 mpName and mpValue are only references into the option string that was parsed. Because of that they are not 0x00 terminated strings and thus the two length parameters are present.
04 Reference: SemysOptions.h
Implementation: Semys Library
See Also: Options Sub-System, SemysOptions, SemysOptExtract()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.