황윤성 wrote:
I update reatos-explorer
cp Makefile.Wine makefile make
explorer_intres.rc:202:1: Warning: Newline in string constant encounterd (started line 153)
Seems wrc has some trouble with UTF16. After converting explorer-cn.rc to windows codepage 936, wrc can load it.
iconv -f UTF16 -t WINDOWS-936 -c explorer-cn.rc > x mv explorer-cn.rc explorer-cn.rc.old mv x explorer-cn.rc
There's also some expressions that wrc considers invalid in explorer_intres.rc. After commenting them out, it works:
explorer_intres.rc #52 //IDA_EXPLORER ACCELERATORS MOVEABLE PURE //BEGIN // "X", ID_FILE_EXIT, VIRTKEY, ALT, NOINVERT // "S", ID_VIEW_FULLSCREEN, VIRTKEY, SHIFT, CONTROL, NOINVERT //END
explorer_intres.rc #187 // CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST DISCARDABLE PURE "explorer.exe.manifest"
Please don't send big attachments to wine-devel. Attachment size < 100k is ok.
Mike