Jump to content
Silver Black

Strange messages at run-time

Recommended Posts

I'm renewing a very old project (from Delphi 2007). All good, but I have some strange compiler messages in the debug window when I save/load text files from my app. Where do they come from?!

 

Process CyberTaskTimer.exe (12980)
Debug Output:
internal\sdk\inc\wil\win32helpers.h(156)\windows.storage.dll!74F39D86: (caller: 74D9922E) ReturnHr(2) tid(1844) 80070002 Impossibile trovare il file specificato.

 

Process CyberTaskTimer.exe (12980)
Debug Output:
internal\sdk\inc\wil\win32helpers.h(119)\windows.storage.dll!74F39E52: (caller: 74F39E8C) ReturnHr(883) tid(1844) 80070002 Impossibile trovare il file specificato.
 

Process CyberTaskTimer.exe (15688)
Debug Output:
onecoreuap\shell\windows.storage\drivfldr.cpp(1420)\windows.storage.dll!74FB2B94: (caller: 74EFFDC9) ReturnHr(27) tid(1474) 8007000F Impossibile trovare l'unità specificata.
 

Process CyberTaskTimer.exe (15688)
Debug Output:
shell\osshell\lmui\ntshrui\dll\shrengine.cpp(1487)\ntshrui.dll!5D8DA283: (caller: 5D8B9F65) ReturnHr(9) tid(26bc) 80004005 Errore non specificato.
 

Process CyberTaskTimer.exe (15688)
Debug Output:
onecoreuap\shell\windows.storage\drivfldr.cpp(1420)\windows.storage.dll!74FB2B94: (caller: 74EFFDC9) ReturnHr(13) tid(d90) 8007000F Impossibile trovare l'unità specificata.
    CallContext:[\CAutoDestItemsEnum::Next\CAutoDestItemsEnum::_EnsureInit] 
 

Process CyberTaskTimer.exe (15688)
Debug Output:
onecoreuap\shell\windows.storage\drivfldr.cpp(1420)\windows.storage.dll!74FB2B94: (caller: 74EFFDC9) ReturnHr(49) tid(1474) 8007000F Impossibile trovare l'unità specificata.
 

Process CyberTaskTimer.exe (15688)
Debug Output:
onecoreuap\shell\windows.storage\regfldr.cpp(1566)\windows.storage.dll!74E8EADB: (caller: 74E8D115) LogHr(4) tid(1474) 80004005 Errore non specificato.
 

 

I have hundreds of this. No issues at all in the behaviour of my app, neither error mesages. But very annoying! And beside this, I'm curious...

 

Share this post


Link to post

So, just to be clear. These are messages in the "Event Log"? They do not come from the compiler. They are messages triggered by your application and the DLLs it uses. Either you dive in deeper using the process monitor from SysInternals or check out how you access those files (standard API, some old legacy code, some new self made code, some alien technology and so forth) in your code. Where are those files? In the MS cloud aka OneDrive?

  • Like 1

Share this post


Link to post

From "event log", sure, sorry. I use a lot of API and make some system-wide hooks. Those files are local on my PC, thery are nothing special: the application tracks down some statistics about system usage and fills in a listview, the user can save the list in a text file, when you save/load that file the messages appear, even without doing nothing, but just the save/open message dialog appears! Strange, 'cause in Delphi 2010 I didn't see them.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×