Advertisement
Guest User

Untitled

a guest
May 29th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. // string.cpp
  2. String::String()
  3. {
  4.    m_dwBufSize = 1;
  5.    m_pszBuffer = NULL;
  6. }
  7.  
  8. // config.cpp
  9. typedef struct
  10. {
  11.    const char *topLevelTag;
  12.    XML_Parser parser;
  13.    Config *config;
  14.    const TCHAR *file;
  15.    int level;
  16.    ConfigEntry *stack[MAX_STACK_DEPTH];
  17.    String charData[MAX_STACK_DEPTH];
  18.    bool trimValue[MAX_STACK_DEPTH];
  19.    bool merge;
  20. } XML_PARSER_STATE;
  21.  
  22. int foo()
  23. {
  24. XML_PARSER_STATE state;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement