- Remove svn:needs-lock, svn:eol-type, and svn:eol-tyle properties.
[reactos.git] / reactos / base / applications / hh / main.c
index 4985103..c20d6d3 100644 (file)
@@ -1,23 +1,23 @@
-#include <windows.h>\r
-\r
-typedef int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline);\r
-\r
-int WINAPI\r
-WinMain(HINSTANCE hInst,\r
-        HINSTANCE hPrevInst,\r
-        LPSTR cmdline,\r
-        int cmdshow)\r
-{\r
-    HMODULE hModule;\r
-    DOWINMAIN *doWinMain;\r
-    int ret = -1;\r
-\r
-    hModule = LoadLibraryA("hhctrl.ocx");\r
-    doWinMain = (DOWINMAIN*) GetProcAddress(hModule, "doWinMain");\r
-\r
-    ret = doWinMain(hInst, cmdline);\r
-\r
-    FreeLibrary(hModule);\r
-\r
-    return ret;\r
-}\r
+#include <windows.h>
+
+typedef int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline);
+
+int WINAPI
+WinMain(HINSTANCE hInst,
+        HINSTANCE hPrevInst,
+        LPSTR cmdline,
+        int cmdshow)
+{
+    HMODULE hModule;
+    DOWINMAIN *doWinMain;
+    int ret = -1;
+
+    hModule = LoadLibraryA("hhctrl.ocx");
+    doWinMain = (DOWINMAIN*) GetProcAddress(hModule, "doWinMain");
+
+    ret = doWinMain(hInst, cmdline);
+
+    FreeLibrary(hModule);
+
+    return ret;
+}