﻿import clr

clr.AddReferenceByPartialName("System");
clr.AddReferenceByPartialName("System.Windows.Forms");

from System import *;
from System.Windows.Forms import *;

def apiHi():
	api.Output( "(IronPython HI using MPNet Api)\n" )

def apiOutput(message):
	api.Output(message)

def apiIsXDiameterModeEnabled():
	return api.IsXDiameterModeEnabled()

def apiCHook(application, function):
	api.RunCHook(application, function)

def windowsMessageBox():
	MessageBox.Show("Created using IronPython!");