intvar.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* -*- tab-width: 8; c-basic-offset: 4 -*- */
  2. /* Wine internal debugger
  3. * Definitions for internal variables
  4. * Copyright 2000 Eric Pouech
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. /* break handling */
  21. INTERNAL_VAR(BreakAllThreadsStartup, FALSE, NULL, dbg_itype_unsigned_int)
  22. INTERNAL_VAR(BreakOnCritSectTimeOut, FALSE, NULL, dbg_itype_unsigned_int)
  23. INTERNAL_VAR(BreakOnAttach, FALSE, NULL, dbg_itype_unsigned_int)
  24. INTERNAL_VAR(BreakOnFirstChance, FALSE, NULL, dbg_itype_unsigned_int)
  25. INTERNAL_VAR(BreakOnDllLoad, FALSE, NULL, dbg_itype_unsigned_int)
  26. INTERNAL_VAR(CanDeferOnBPByAddr, FALSE, NULL, dbg_itype_unsigned_int)
  27. /* current process/thread */
  28. INTERNAL_VAR(ThreadId, FALSE, &dbg_curr_tid, dbg_itype_unsigned_int)
  29. INTERNAL_VAR(ProcessId, FALSE, &dbg_curr_pid, dbg_itype_unsigned_int)
  30. /* symbol manipulation */
  31. INTERNAL_VAR(AlwaysShowThunks, FALSE, NULL, dbg_itype_unsigned_int)
  32. /* process manipulation */
  33. INTERNAL_VAR(AlsoDebugProcChild, FALSE, NULL, dbg_itype_unsigned_int)
  34. /* automatic invocation on failure */
  35. INTERNAL_VAR(ShowCrashDialog, TRUE, NULL, dbg_itype_unsigned_int)