Replies: 8 comments 4 replies
-
|
Agree on the TCHAR tacticts.. do you work in a separate fork or how does the merge happens (if any)? |
Beta Was this translation helpful? Give feedback.
-
|
Yeah I know... LOOOOTS of calls :) ... I was thinking what would be the best way to do it and we have:
With the first we have the issue that Salamander's code is written for ANSI character set. And as in both options we have the same issue I've decided that as I will be cleaning the code anyway let just switch to TCHAR which will not influence ANSI at this time in anyway and at the end we'll be able to switch to Unicode with one switch... of course at that time we'll need LOOOTS of testing. :) And as always every journey starts with the first step. :) BrW |
Beta Was this translation helpful? Give feedback.
-
|
agree 100 percents! |
Beta Was this translation helpful? Give feedback.
-
|
If you want we can also have a meeting so that I would show you what I have done and in which direction I'm currently going and then you could join on other parts? |
Beta Was this translation helpful? Give feedback.
-
|
great idea! |
Beta Was this translation helpful? Give feedback.
-
Don't know programming, but I may be able to help with testing new builds. |
Beta Was this translation helpful? Give feedback.
-
|
@greenozon I've checked your github and I see you have forked a lot on reverse engineering stuff.... aa yeah that were the days... at XP time I also worked on reverse engineering and "fixing" the apps if they blocked some usage of the app. ;) .. I even wrote ida2sice plugin for ida... it would still need more loving but SIce life ended so the plugin died too... it's a bummer. |
Beta Was this translation helpful? Give feedback.
-
|
@WaldemarH hi! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Jan,
I'm trying to cleanup the code and move it to TCHAR and I'm looking at the registry calls and have no idea why would you want to send registry requests to another thread and then wait for it to finish the work before continuing ?
The only reason for me would be if registry access would somehow take a really long time and you would still want the message pump to track for specific message.
Any clarification on this would be much appreciated.
Best regards
Waldemar
EDIT:
A little search would answer my question... the only time the registry thread is used is during shutdown or user log-off, so that app stores the registry values and that the main thread message loop stays running.
In other case Windows could kill the app prematurelly.
Beta Was this translation helpful? Give feedback.
All reactions