#include "DoorPack.h"


void dmain( void )
	{
	char string[80];
	sendmessage("This is the DoorPack sample door", 1 );
	
	prompt("Enter some text (any text):", string, 80 );
	
	sendmessage("\n\nYou entered:", 0 );
	sendmessage( string, 1 );
	
	hotkey( "Hit any key to exit...", string );
	}
