crashrpt | ||
A crash reporting system for Windows applications |
cr
prefix, CrashRpt structures have CR
prefix and CrashRpt classes have Cr
prefix.All CrashRpt functions using character set dependent arguments have two versions of function name (multibyte versions are A-suffixed and wide character versions are W-suffixed). For example, crInstall() function has two versions of function name: crInstallA() and crInstallW(). Typically in your program you use a character set independent mapping of function name, for example use crInstall() that expands into crInstallW() if you use wide character set or into crInstallA() if you use multibyte character set.