| 123456789101112131415161718192021222324 |
- //
- // System.Web.Util.ICalls
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2003 Ximian, Inc (http://www.ximian.com)
- //
- using System.Runtime.CompilerServices;
- namespace System.Web.Util
- {
- class ICalls
- {
- private ICalls () {}
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- extern static public string GetMachineConfigPath ();
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- extern static public string GetMachineInstallDirectory ();
- }
- }
|