Changeset 185 for libyaml/trunk/include/yaml/yaml.h
- Timestamp:
- 06/07/06 16:30:22 (7 years ago)
- File:
-
- 1 edited
-
libyaml/trunk/include/yaml/yaml.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/trunk/include/yaml/yaml.h
r184 r185 538 538 539 539 typedef struct { 540 /** Is a simple key possible? */541 int possible;542 543 540 /** Is a simple key required? */ 544 541 int required; … … 586 583 int problem_value; 587 584 585 /** The problem position. */ 586 yaml_mark_t problem_mark; 587 588 /** The error context. */ 589 const char *context; 590 591 /** The context position. */ 592 yaml_mark_t context_mark; 593 588 594 /** 589 595 * @} … … 662 668 663 669 /** The tokens queue, which contains the current produced tokens. */ 664 yaml_token_t * tokens;670 yaml_token_t **tokens; 665 671 666 672 /** The size of the tokens queue. */ … … 692 698 693 699 /** The stack of potential simple keys. */ 694 yaml_simple_key_t * simple_keys;700 yaml_simple_key_t **simple_keys; 695 701 696 702 /** The size of the simple keys stack. */ … … 854 860 yaml_free(void *ptr); 855 861 862 /** The initial size for various buffers. */ 863 864 #define YAML_DEFAULT_SIZE 16 865 856 866 /** The size of the raw buffer. */ 857 867
Note: See TracChangeset
for help on using the changeset viewer.
