Cross platform crash-reporters [duplicate] - c++

This question already has answers here:
Cross-platform crash handler
(3 answers)
Closed 9 years ago.
Are there any cross platform crash reporters for C++ besides google-break pad? I have seen google-breakpad but it has very very limited documentation, and I have nothing seen very much mentioned here, google or other source websites

Have a look at BugTrap which might help you.

Related

C++ check for used standard and features [duplicate]

This question already has answers here:
How to determine the version of the C++ standard used by the compiler?
(9 answers)
What do the values of the C++ "feature test macros" mean?
(1 answer)
Closed 3 months ago.
The community reviewed whether to reopen this question 3 months ago and left it closed:
Original close reason(s) were not resolved
I'm coming from a Java background and we learned to setup tests for the used java version when working with others, so everyne is using the same and to prevent conflicts.
Is there a way to test for the used standard? Likewise for language features you agreed on not using? Do you do this with a unit test?

Determine Windows version via application [duplicate]

This question already has answers here:
How do you check the windows version in Win32 at runtime?
(2 answers)
Closed 9 years ago.
I wanted to ask, is there any possibility to determine the Windows version via the application, I have made some research, but haven't found,
Thank you in advance ^^
Err... How about GetVersionEx() ?

Getting OSName as a string C++ [duplicate]

This question already has answers here:
Get OS in c++ win32 for all versions of win?
(5 answers)
Closed 9 years ago.
Im am super new to C++ and am trying to figure out how to return the OSName (win 7, 8, vista, xp, etc) as a string. I tried searching and MSDN was no help, only confused me further.
All help appreciated.
it seems using predefined headers is the easiest way
http://sourceforge.net/p/predef/wiki/OperatingSystems/
What makes you think MSDN will give you the answers? Microsoft's implementation on MSDN is not standard C++, and thus you should be looking for a portable solution.

Open MFC application to get source-code [duplicate]

This question already has answers here:
Is it possible to "decompile" a Windows .exe? Or at least view the Assembly?
(16 answers)
Closed 7 years ago.
Does someone know how to open an MFC application to get the source-code?
(I want to know how it works)
MFC is compiled from C++ source, so it can't be recovered. You can use a decompiler on it, but the source you get back won't be particularly instructive.
There's a good related question on debugging, disassembling and decompiling you can check for more links.

Good coding guidelines tool for C++? [duplicate]

This question already has answers here:
Closed 13 years ago.
Possible Duplicate:
What tools exist for comparing C++ code to coding guidelines?
Can any one suggest any good coding guidelines tool for C++ which must be configurable according to specific requirements?
I've always found the Google C++ Style Guide to be a good one.