switch to standard conform CRT function names
Modified: trunk/reactos/subsys/system/explorer/explorer.cpp
Modified: trunk/reactos/subsys/system/explorer/shell/filechild.cpp
Modified: trunk/reactos/subsys/system/explorer/shell/ntobjfs.cpp
Modified: trunk/reactos/subsys/system/explorer/taskbar/favorites.cpp

Modified: trunk/reactos/subsys/system/explorer/explorer.cpp
--- trunk/reactos/subsys/system/explorer/explorer.cpp	2005-11-29 08:23:10 UTC (rev 19744)
+++ trunk/reactos/subsys/system/explorer/explorer.cpp	2005-11-29 09:22:39 UTC (rev 19745)
@@ -985,7 +985,7 @@
 		_dup2(_open_osfhandle((long)GetStdHandle(STD_OUTPUT_HANDLE), 0), 1);
 		_dup2(_open_osfhandle((long)GetStdHandle(STD_ERROR_HANDLE), 0), 2);
 
-		g_Globals._log = fdopen(1, "w");
+		g_Globals._log = _fdopen(1, "w");
 		setvbuf(g_Globals._log, 0, _IONBF, 0);
 
 		LOG(TEXT("starting explorer debug log\n"));

Modified: trunk/reactos/subsys/system/explorer/shell/filechild.cpp
--- trunk/reactos/subsys/system/explorer/shell/filechild.cpp	2005-11-29 08:23:10 UTC (rev 19744)
+++ trunk/reactos/subsys/system/explorer/shell/filechild.cpp	2005-11-29 09:22:39 UTC (rev 19745)
@@ -548,7 +548,7 @@
 }
 
 
-void FileChildWindow::activate_entry(Pane* pane)	///@todo enable using <RETURN> key accelerator
+void FileChildWindow::activate_entry(Pane* pane)	///@todo enable using RETURN key accelerator
 {
 	Entry* entry = pane->_cur;
 

Modified: trunk/reactos/subsys/system/explorer/shell/ntobjfs.cpp
--- trunk/reactos/subsys/system/explorer/shell/ntobjfs.cpp	2005-11-29 08:23:10 UTC (rev 19744)
+++ trunk/reactos/subsys/system/explorer/shell/ntobjfs.cpp	2005-11-29 09:22:39 UTC (rev 19745)
@@ -328,7 +328,7 @@
 #else
 			char type_name[32];
 			WideCharToMultiByte(CP_ACP, 0, info->type.string_ptr, info->type.string_len, type_name, 32, 0, 0);
-			entry->_type_name = strdup(type_name);
+			entry->_type_name = _strdup(type_name);
 #endif
 
 			if (!first_entry)

Modified: trunk/reactos/subsys/system/explorer/taskbar/favorites.cpp
--- trunk/reactos/subsys/system/explorer/taskbar/favorites.cpp	2005-11-29 08:23:10 UTC (rev 19744)
+++ trunk/reactos/subsys/system/explorer/taskbar/favorites.cpp	2005-11-29 09:22:39 UTC (rev 19745)
@@ -72,9 +72,9 @@
 			while(isspace(*cont))
 				++cont;
 
-			if (!strnicmp(keyword, "URL", 3))
+			if (!_strnicmp(keyword, "URL", 3))
 				_url = DecodeURLString(cont);
-			else if (!strnicmp(keyword, "IconFile", 8))
+			else if (!_strnicmp(keyword, "IconFile", 8))
 				_icon_path = DecodeURLString(cont);
 		}
 	}