* MonoIO.cs: Implement GetTempPath svn path=/trunk/mcs/; revision=14625
@@ -1,3 +1,7 @@
+2003-05-16 Dick Porter <[email protected]>
+
+ * MonoIO.cs: Implement GetTempPath
2003-03-17 Gonzalo Paniagua Javier <[email protected]>
* FileSystemWatcher.cs: added attributes and some more implementation.
@@ -47,6 +47,9 @@ namespace System.IO
[MethodImplAttribute (MethodImplOptions.InternalCall)]
public extern static bool CreatePipe (out IntPtr read_handle, out IntPtr write_handle);
+ [MethodImplAttribute (MethodImplOptions.InternalCall)]
+ public extern static int GetTempPath(out string path);
}
2003-05-14 Gonzalo Paniagua Javier <[email protected]>
* DirectoryInfo.cs: fixed bug #42991.
@@ -262,6 +262,9 @@ namespace System.IO
get;