Advertisement
Guest User

Untitled

a guest
Apr 26th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <Windows.h>
  2.  
  3. extern "C" int __stdcall testfunc(const char* text)
  4. {
  5.     try
  6.     {
  7.         throw 1;
  8.     }
  9.     catch(...)
  10.     {
  11.         MessageBoxA(0, text, text, 0);
  12.     }
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement