[SNDVOL32] Add the small line dialog
[reactos.git] / base / applications / iexplore / main.c
index 21f0c71..4b76ce3 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+//#include <windows.h>
+
+#include <stdarg.h>
+
+#define WIN32_NO_STATUS
+#define _INC_WINDOWS
+#define COM_NO_WINDOWS_H
+
 #include <windef.h>
+#include <winbase.h>
+#include <winuser.h>
+#include <winreg.h>
+#include <winver.h>
+
+#include <advpub.h>
+//#include <ole2.h>
+//#include <rpcproxy.h>
+
+#include <wine/unicode.h>
+#include <wine/debug.h>
 
-extern DWORD WINAPI IEWinMain(LPSTR, int);
+extern DWORD WINAPI IEWinMain(const WCHAR*, int);
 
-int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
+static BOOL check_native_ie(void)
 {
+    DWORD handle, size;
+    LPWSTR file_desc;
+    UINT bytes;
+    void* buf;
+    BOOL ret = TRUE;
+    LPWORD translation;
+
+    static const WCHAR browseui_dllW[] = {'b','r','o','w','s','e','u','i','.','d','l','l',0};
+    static const WCHAR wineW[] = {'W','i','n','e',0};
+    static const WCHAR translationW[] =
+        {'\\','V','a','r','F','i','l','e','I','n','f','o',
+         '\\','T','r','a','n','s','l','a','t','i','o','n',0};
+    static const WCHAR file_desc_fmtW[] =
+        {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o',
+         '\\','%','0','4','x','%','0','4','x',
+         '\\','F','i','l','e','D','e','s','c','r','i','p','t','i','o','n',0};
+    WCHAR file_desc_strW[48];
+
+    size = GetFileVersionInfoSizeW(browseui_dllW, &handle);
+    if(!size)
+        return TRUE;
+
+    buf = HeapAlloc(GetProcessHeap(), 0, size);
+    GetFileVersionInfoW(browseui_dllW, 0, size,buf);
+    if (VerQueryValueW(buf, translationW, (void **)&translation, &bytes))
+    {
+        wsprintfW(file_desc_strW, file_desc_fmtW, translation[0], translation[1]);
+        ret = !VerQueryValueW(buf, file_desc_strW, (void**)&file_desc, &bytes) || !strstrW(file_desc, wineW);
+    }
+
+    HeapFree(GetProcessHeap(), 0, buf);
+    return ret;
+}
+
+static DWORD register_iexplore(BOOL doregister)
+{
+    HRESULT hres;
+
+    if (check_native_ie()) {
+        WINE_MESSAGE("Native IE detected, not doing registration\n");
+        return 0;
+    }
+
+    hres = RegInstallA(NULL, doregister ? "RegisterIE" : "UnregisterIE", NULL);
+    return FAILED(hres);
+}
+
+int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE prev, WCHAR *cmdline, int show)
+{
+    static const WCHAR regserverW[] = {'r','e','g','s','e','r','v','e','r',0};
+    static const WCHAR unregserverW[] = {'u','n','r','e','g','s','e','r','v','e','r',0};
+
+    if(*cmdline == '-' || *cmdline == '/') {
+        if(!strcmpiW(cmdline+1, regserverW))
+            return register_iexplore(TRUE);
+        if(!strcmpiW(cmdline+1, unregserverW))
+            return register_iexplore(FALSE);
+    }
+
     return IEWinMain(cmdline, show);
 }