[RAPPS]
[reactos.git] / reactos / base / applications / rapps / loaddlg.c
index ab40223..ae2ca11 100644 (file)
@@ -25,9 +25,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#define COBJMACROS
-#define WIN32_NO_STATUS
-
 #include "rapps.h"
 
 static PAPPLICATION_INFO AppInfo;
@@ -260,7 +257,7 @@ ThreadFunc(LPVOID Context)
     ShowWindow(Dlg, SW_HIDE);
 
     /* run it */
-    memset(&si, 0, sizeof(si));
+    ZeroMemory(&si, sizeof(si));
     si.cb = sizeof(si);
     r = CreateProcessW(path, NULL, NULL, NULL, 0, 0, NULL, NULL, &si, &pi);
     if (0 == r) goto end;