2015-08-30 06:30:29 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
// PDAApplication.cs
|
|
|
|
|
// Application SDK for the PDA. (to make my life easier)
|
|
|
|
|
// Copyright (c) 2012 Robert MacGregor
|
|
|
|
|
//==============================================================================
|
|
|
|
|
|
|
|
|
|
function PDAApplication::main(%this, %client)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function PDAApplication::action(%this, %client, %page)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function PDAApplication::exit(%this, %client, %page)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// API Functions
|
|
|
|
|
function PDAApplication::setTitle(%this, %title)
|
|
|
|
|
{
|
|
|
|
|
// Won't do anything for now because the title is a clientside thing, actually.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function PDAApplication::cls(%this)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The script parses <URL=
|
|
|
|
|
function PDAApplication::setLine(%this, %lineNo, %columnStart, %data)
|
|
|
|
|
{
|
2012-08-18 00:48:47 +00:00
|
|
|
}
|