Re: [GD-Windows] Finding routine that's crashing
Brought to you by:
vexxed72
From: Colin F. <cp...@ea...> - 2002-08-08 01:34:04
|
2002 August 7th Wednesday In the e-mail I posted three seconds ago, I wrote: ================================================== [5] It is absolutely critical to use the proper HANDLE to indicate the process in all of the symbol handler functions. You must determine your platform, and then: [a] Under Windows 98, use the following HANDLE: ::OpenProcess(PROCESS_ALL_ACCESS, FALSE, ::GetCurrentProcessId()); [b] Under Windows 2000, Windows XP, Windows Me, use the following HANDLE: (HANDLE)GetCurrentProcessId() ================================================== But I mixed up [a] and [b]! The HANDLE's should be swapped! Yes...It is "absolutely critical" to use the proper handle... ;-) So much for my "public service" effort! --- Colin |