View Single Post
  #11  
Old 08-19-2005, 16:50
Hero Hero is offline
VIP
 
Join Date: Jan 2005
Posts: 224
Rept. Given: 2
Rept. Rcvd 1 Time in 1 Post
Thanks Given: 4
Thanks Rcvd at 2 Times in 2 Posts
Hero Reputation: 1
Structured exception handler(SEH) is a way for handling exceptions!
You surely seen codes like this in many programs:
Code:
push offset handler
push fs:[0]
mov fs:[0],esp
....
pop fs:[0]
add esp,4
ret
handler:
....
mov eax,1
ret
This is a SEH.
If you know rusian,or you will use online translators like babelfish,You can use these tutorials:
http://wasm.ru/article.php?article=Win32SEHPietrek1
http://wasm.ru/article.php?article=Win32SEHPietrek2
http://wasm.ru/article.php?article=Win32SEHPietrek3
or else you can use web site that I attached(I don't remember its URL) for a great tutorial.
In addition I don't forget when I asked the same question here(or woodmann),and get a blame from JMI!

sincerely yours
Attached Files
File Type: zip Except32.zip (73.7 KB, 12 views)
__________________
I should look out my posts,or JMI gets mad on me!

Last edited by Hero; 08-19-2005 at 16:52.
Reply With Quote