SemysOptions

01
typedef struct tagSemysOptions
{
  char const *mpFullText;
  uint32 mMainLen;

  SemysOptionEntry mEntries[STCMaxOptions];
} SemysOptions;
02 Members:
  • mpFullText: Pointing to the option string that was parsed.
  • mMainLen: How many characters the main part has.
  • mEntries: An array of SemysOptionEntry structures. STCMaxOptions is a constant of 20.
03 No member within these structures is dynamically allocated. All character pointer reference into the main option string and are companied by a length value.
04 The main part of the option string is always at the start of the string itself and thus needs no extra parameter, only its length.
05 Reference: SemysOptions.h
Implementation: Semys Library
See Also: Options Sub-System, SemysOptionEntry, SemysOptExtract()

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