Are these warnings or errors?

Questions about Wine on Linux
Locked
workin-mole
Level 1
Level 1
Posts: 5
Joined: Thu Mar 03, 2022 5:16 am

Are these warnings or errors?

Post by workin-mole »

Hi,
I don't know if these:
0108:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll", (null), 0000000003FAE870, 00000000046B460, 0000000003FAE878, 0000000003FAE868
is a warning or an error. Can someone please explain? Thanks.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Are these warnings or errors?

Post by dimesio »

Neither; fixmes are unimplemented functions. If your app is working, don't worry about them.
workin-mole
Level 1
Level 1
Posts: 5
Joined: Thu Mar 03, 2022 5:16 am

Re: Are these warnings or errors?

Post by workin-mole »

Problem is my app is not working, it should be writing a log but it has not even made the file..
hotfrostworm
Level 2
Level 2
Posts: 15
Joined: Fri Nov 06, 2020 3:20 pm

Re: Are these warnings or errors?

Post by hotfrostworm »

Next question, what is "not working" mean in this case?

1. The application fails to start.
2. The application starts but crashes.
3. The application runs, but features are not operational.

The string you showed contains GetFileMUIPath;
Retrieves the path to all language-specific resource files associated with the supplied LN file. The application must call this function to obtain the path for each resource file.

Tzres.dll is the Timezone Resource file it is accessing, most likely in attempt to guess your regional language or location.

Beyond this, more information is needed for proper debugging.
Locked