DebugView for WinCE
-
Hi friends, Sorry for such kind of question. I am newbiee for Win CE.Is there any kind of utility available for viewing OutputDebugString output? Like Dbgview for Winnt\98\2K VikramS
-
Hi friends, Sorry for such kind of question. I am newbiee for Win CE.Is there any kind of utility available for viewing OutputDebugString output? Like Dbgview for Winnt\98\2K VikramS
Hello Vikram, for win CE you should use the following: include windows.h and use following declaration... #include extern "C" void WINAPIV NKDbgPrintfW(LPCWSTR lpszFmt, ...); use the function like: NKDbgPrintfW (_T("%s(%i) : Warning : something went wrong here!\n"), _T(__FILE__), __LINE__); Hope this gets you along....
-
Hi friends, Sorry for such kind of question. I am newbiee for Win CE.Is there any kind of utility available for viewing OutputDebugString output? Like Dbgview for Winnt\98\2K VikramS
If you are attached to the application (in debug mode) with the development tool, like eVC++ you can see all debug outputs in the output box of the development tool! Regards, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
-
If you are attached to the application (in debug mode) with the development tool, like eVC++ you can see all debug outputs in the output box of the development tool! Regards, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
Okey. That is nice. But is there any kind of application like DbgView which will run on the device So that I can see these outputdebugstrings...
-
Okey. That is nice. But is there any kind of application like DbgView which will run on the device So that I can see these outputdebugstrings...
Not that I know, but you can create your own DbgView application for your device, like Paul DiLascia's TraceWin 4.0 .NET for the normal Windows OS. Regards, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
-
Hi friends, Sorry for such kind of question. I am newbiee for Win CE.Is there any kind of utility available for viewing OutputDebugString output? Like Dbgview for Winnt\98\2K VikramS