I'm trying to write some debug info to the Visual Studio output window in a WinRT component. I ran across the function OutputDebugString which would appear to do what I want, however when I try to use it in my app I get "error 'OutputDebugString' identifier not found". I'm new to C++, am I missing a "using namespace" or include?
You will need to add:
#include <..\um\debugapi.h>
Sample call:
App::App()
{
InitializeComponent();
Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending);
OutputDebugString(L"App initialized\n");
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With