Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
290 B

  1. struct BACKTRACE {
  2. BACKTRACE(const BACKTRACE &other);
  3. ~BACKTRACE();
  4. BACKTRACE(INT nMax, INT nSkip);
  5. bool BACKTRACE::operator <(const BACKTRACE &second) const;
  6. BOOL BACKTRACE::ComputeSymbolic(BOOL fOverWrite);
  7. LPSTR pszSymbolicStack;
  8. int nQuick;
  9. LPVOID *ppNumeric;
  10. int cch;
  11. };