I update reatos-explorer
cp Makefile.Wine makefile make
explorer_intres.rc:202:1: Warning: Newline in string constant encounterd (started line 153) explorer_intres.rc:203:1: Warning: Newline in string constant encounterd (started line 153) explorer_intres.rc:204:1: Warning: Newline in string constant encounterd (started line 153) explorer_intres.rc:205:1: Warning: Newline in string constant encounterd (started line 153) explorer_intres.rc:206:1: Warning: Newline in string constant encounterd (started line 153) explorer_intres.rc:206:1: Warning: Unmatched #if/#endif at end of file explorer_intres.rc:206:1: Error: Unexpected end of file during preprocessing make: *** [explorer_intres.res] Error 1
D_LIBRARY_PATH="../../libs/unicode:$LD_LIBRARY_PATH" /usr/bin/wrc --nostdinc -I. -I. -I../../include -I../../include -D__WRC__ -D_WIN32 -foexplorer_intres.res explorer_intres.rc explorer_intres.rc:55:8: Error: Key code must be an ascii string make: *** [explorer_intres.res] Error 1
I append that file..
------------------------------------------------- Your Life on the Net DreamWiz Free Mail @ http://www.dreamwiz.com/
On Sat, 26 Nov 2005 13:22:23 +0100, 황윤성 hys545@dreamwiz.com wrote:
I update reatos-explorer
thanks for blocking my email account with a 10MB attachment, dim wit.
Go back to school and learn about email.
:roll:
Your Life on the Net DreamWiz Free Mail @ http://www.dreamwiz.com/
황윤성 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