Source code of Windows XP (NT5)
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.

17 lines
293 B

  1. #ifndef _DBUTIL_H_
  2. //*** dbutil.h -- debug helper routines
  3. //
  4. // dbutil.cpp
  5. struct DBstkback {
  6. int fp; // frame ptr
  7. int ret; // return addr
  8. };
  9. int DBGetStackBack(int *pfp, struct DBstkback *pstkback, int nstkback);
  10. // dump.c
  11. // ...
  12. #define _DBUTIL_H_
  13. #endif // _DBUTIL_H_