[IEXPLORE]
authorGiannis Adamopoulos <gadamopoulos@reactos.org>
Wed, 25 Feb 2015 01:02:03 +0000 (01:02 +0000)
committerGiannis Adamopoulos <gadamopoulos@reactos.org>
Wed, 25 Feb 2015 01:02:03 +0000 (01:02 +0000)
- Contrary to wine we store our version info with utf16 (like windows do). Fix checking for native internet explorer.
- Now our iexplore.inf is installed.

svn path=/trunk/; revision=66445

reactos/base/applications/iexplore/main.c

index a1b00f9..4de53e8 100644 (file)
@@ -53,7 +53,11 @@ static BOOL check_native_ie(void)
     static const WCHAR wineW[] = {'W','i','n','e',0};
     static const WCHAR file_desc_strW[] =
         {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o',
+#ifndef __REACTOS__
          '\\','0','4','0','9','0','4','e','4',
+#else
+         '\\','0','4','0','9','0','4','b','0',
+#endif
          '\\','F','i','l','e','D','e','s','c','r','i','p','t','i','o','n',0};
 
     size = GetFileVersionInfoSizeW(browseui_dllW, &handle);