ICalls.cs 490 B

123456789101112131415161718192021222324
  1. //
  2. // System.Web.Util.ICalls
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2003 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System.Runtime.CompilerServices;
  10. namespace System.Web.Util
  11. {
  12. class ICalls
  13. {
  14. private ICalls () {}
  15. [MethodImplAttribute(MethodImplOptions.InternalCall)]
  16. extern static public string GetMachineConfigPath ();
  17. [MethodImplAttribute(MethodImplOptions.InternalCall)]
  18. extern static public string GetMachineInstallDirectory ();
  19. }
  20. }