Changeset 202 for trunk/include


Ignore:
Timestamp:
06/06/10 20:36:27 (14 years ago)
Author:
tim
Message:

began implementing independent python subkey and value iterators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/regfi.h

    r201 r202  
    340340 
    341341  /* Number of immediate children */
    342   uint32_t num_children; 
    343 
    344   /* Total number of keys referenced by this list and it's children */
    345   uint32_t num_keys;     
     342  uint32_t num_children;
     343
     344  /* Total number of keys referenced by this list and its children */
     345  uint32_t num_keys;
    346346
    347347  REGFI_SUBKEY_LIST_ELEM* elements;
     
    349349
    350350  /* Set if the magic indicates this subkey list points to child subkey lists */
    351   bool recursive_type; 
     351  bool recursive_type;
    352352} REGFI_SUBKEY_LIST;
    353353
     
    708708 * also stores a list of warnings and error messages generated while parsing
    709709 * the registry hive.  These can be tuned using @ref regfi_set_message_mask. 
    710  * Messages may be retrieved using @ref regfi_get_messages.
     710 * Messages may be retrieved using @ref regfi_log_get_str.
    711711 *
    712712 * @note If the message mask is set to record any messages, dependent code
    713  *       must use @ref regfi_get_messages periodically to clear the message
     713 *       must use @ref regfi_log_get_str periodically to clear the message
    714714 *       queue. Otherwise, this structure will grow in size over time as
    715715 *       messages queue up.
     
    15301530                               REGFI_ENCODING output_encoding, bool strict);
    15311531
     1532_EXPORT
     1533void regfi_init();
     1534
    15321535
    15331536#endif  /* _REGFI_H */
Note: See TracChangeset for help on using the changeset viewer.