Click here to Skip to main content
15,885,683 members
Articles / Programming Languages / C++

Trapping Bugs with BlackBox

Rate me:
Please Sign up or sign in to vote.
3.72/5 (27 votes)
25 May 2003BSD6 min read 263.5K   2.1K   130  
A brief article explaining how to use BlackBox in your programs to trap errors
//BlackBoxUI.h

#ifndef _BLACKBOXUI_H__
#define _BLACKBOXUI_H__


extern const char* g_errorLable;

extern const char* g_mailToAddress;

extern const char* g_submitBugURL;

int ShowBlackBoxUI( EXCEPTION_POINTERS * pExPtrs, HINSTANCE hInstance );

#endif //_BLACKBOXUI_H__

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer (Senior)
United States United States
Currently working on the Visual Component Framework, a really cool C++ framework. Currently the VCF has millions upon millions upon billions of Users. If I make anymore money from it I'll have to buy my own country.

Comments and Discussions