[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppBuilderFUNC
The code below lets the function name appear in the Event Log, which can be written to using OutputDebugString.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppBuilderFUNC
__FUNC__
C++ Builder macro usefull for debugging. It inserts the name of the function it is in.The code below lets the function name appear in the Event Log, which can be written to using OutputDebugString.
void myFunction()
{
OutputDebugString(__FUNC__);
}
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
