* COM class constructor.
* @param string $module_name
* @param string $server_name [optional]
* @param int $codepage [optional]
* @param string $typelib [optional]
*/
public function __construct($module_name, $server_name = null, $codepage = CP_ACP, $typelib = null)
{
}
public function __get($name)
{
}
public function __set($name, $value)
{
}
public function __call($name, $args)
{
}
}
/**
* The DOTNET class allows you to instantiate a class from a .Net assembly and call its methods and access its properties.
* @link https://php.net/manual/en/class.dotnet.php
*/
class DOTNET
{
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)
* COM class constructor.
* @param string $assembly_name
* @param string $class_name
* @param int $codepage [optional]
*/
public function __construct($assembly_name, string $class_name, $codepage = CP_ACP)
{
}
public function __get($name)
{
}
public function __set($name, $value)
{
}
public function __call($name, $args)
{
}
}
/**
* The VARIANT is COM's equivalent of the PHP zval; it is a structure that can contain a value with a range of different possible types. The VARIANT class provided by the COM extension allows you to have more control over the way that PHP passes values to and from COM.
* @link https://php.net/manual/en/class.variant.php
*/
class VARIANT
{
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)
* COM class constructor.
* @param mixed $value [optional]
* @param int $type [optional]
* @param int $codepage [optional]
*/
public function __construct($value = null, int $type = VT_EMPTY, $codepage = CP_ACP)
{
}
public function __get($name)
{
}
public function __set($name, $value)
{
}
public function __call($name, $args)
{
}
}
/**
* This extension will throw instances of the class com_exception whenever there is a potentially fatal error reported by COM. All COM exceptions have a well-defined code property that corresponds to the HRESULT return value from the various COM operations. You may use this code to make programmatic decisions on how to handle the exception.
* @link https://php.net/manual/en/com.error-handling.php
*/
class com_exception extends Exception
{
}
/**
* (PHP 5, PHP 7)
* Generate a globally unique identifier (GUID)
* @link https://php.net/manual/en/function.com-create-guid.php
* @return string
*/
function com_create_guid()
{
}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)
* Connect events from a COM object to a PHP object
* @link https://php.net/manual/en/function.com-event-sink.php
* @param \VARIANT $comobject
* @param object $sinkobject
* @param string $sinkinterface [optional]
* @return bool
*/
function com_event_sink($comobject, $sinkobject, $sinkinterface = null)
{
}
/**
* (PHP 5, PHP 7)
* Returns a handle to an already running instance of a COM object
* @link https://php.net/manual/en/function.com-get-active-object.php
* @param string $progid
* @param int $code_page [optional]
* @return \VARIANT
*/
function com_get_active_object($progid, $code_page = CP_ACP)
{
}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)
* Loads a Typelib
* @link https://php.net/manual/en/function.com-get-active-object.php
* @param string $typelib_name
* @param bool $case_insensitive [optional]
* @return bool
*/
function com_load_typelib($typelib_name, $case_insensitive = true)
{
}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)
* Process COM messages, sleeping for up to timeoutms milliseconds
* @link https://php.net/manual/en/function.com-message-pump.php
* @param int $timeoutms [optional]
* @return bool
*/
function com_message_pump($timeoutms = 0)
{
}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)
* Print out a PHP class definition for a dispatchable interface
* @link https://php.net/manual/en/function.com-print-typeinfo.php
* @param object $comobject
* @param string $dispinterface [optional]
* @param bool $wantsink [optional]
* @return bool
*/
function com_print_typeinfo($comobject, $dispinterface = null, $wantsink = false)
{
}
/**
* (PHP 5, PHP 7)
* Returns the absolute value of a variant
* @link https://php.net/manual/en/function.variant-abs.php
* @param mixed $val
* @return mixed
*/
function variant_abs($val)
{
}
/**
* (PHP 5, PHP 7)
* "Adds" two variant values together and returns the result
* @link https://php.net/manual/en/function.variant-abs.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_add($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Performs a bitwise AND operation between two variants
* @link https://php.net/manual/en/function.variant-and.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_and($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Convert a variant into a new variant object of another type
* @link https://php.net/manual/en/function.variant-cast.php
* @param \VARIANT $variant
* @param int $type
* @return \VARIANT
*/
function variant_cast($variant, $type)
{
}
/**
* (PHP 5, PHP 7)
* Concatenates two variant values together and returns the result
* @link https://php.net/manual/en/function.variant-cat.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_cat($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Compares two variants
* @link https://php.net/manual/en/function.variant-cmp.php
* @param mixed $left
* @param mixed $right
* @param int $lcid [optional]
* @param int $flags [optional]
* @return int
*/
function variant_cmp($left, $right, $lcid = null, $flags = null)
{
}
/**
* (PHP 5, PHP 7)
* Returns a variant date representation of a Unix timestamp
* @link https://php.net/manual/en/function.variant-date-from-timestamp.php
* @param int $timestamp
* @return \VARIANT
*/
function variant_date_from_timestamp($timestamp)
{
}
/**
* (PHP 5, PHP 7)
* Converts a variant date/time value to Unix timestamp
* @link https://php.net/manual/en/function.variant-date-to-timestamp.php
* @param \VARIANT $variant
* @return int
*/
function variant_date_to_timestamp($variant)
{
}
/**
* (PHP 5, PHP 7)
* Returns the result from dividing two variants
* @link https://php.net/manual/en/function.variant-div.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_div($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Performs a bitwise equivalence on two variants
* @link https://php.net/manual/en/function.variant-eqv.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_eqv($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Returns the integer portion of a variant
* @link https://php.net/manual/en/function.variant-fix.php
* @param mixed $variant
* @return mixed
*/
function variant_fix($variant)
{
}
/**
* (PHP 5, PHP 7)
* Returns the type of a variant object
* @link https://php.net/manual/en/function.variant-get-type.php
* @param VARIANT $variant
* @return int
*/
function variant_get_type($variant)
{
}
/**
* (PHP 5, PHP 7)
* Converts variants to integers and then returns the result from dividing them
* @link https://php.net/manual/en/function.variant-idiv.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_idiv($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Performs a bitwise implication on two variants
* @link https://php.net/manual/en/function.variant-imp.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_imp($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Returns the integer portion of a variant
* @link https://php.net/manual/en/function.variant-int.php
* @param mixed $variant
* @return mixed
*/
function variant_int($variant)
{
}
/**
* (PHP 5, PHP 7)
* Divides two variants and returns only the remainder
* @link https://php.net/manual/en/function.variant-mod.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_mod($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Multiplies the values of the two variants
* @link https://php.net/manual/en/function.variant-mul.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_mul($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Performs logical negation on a variant
* @link https://php.net/manual/en/function.variant-neg.php
* @param mixed $variant
* @return mixed
*/
function variant_neg($variant)
{
}
/**
* (PHP 5, PHP 7)
* Performs bitwise not negation on a variant
* @link https://php.net/manual/en/function.variant-not.php
* @param mixed $variant
* @return mixed
*/
function variant_not($variant)
{
}
/**
* (PHP 5, PHP 7)
* Performs a logical disjunction on two variants
* @link https://php.net/manual/en/function.variant-or.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_or($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Returns the result of performing the power function with two variants
* @link https://php.net/manual/en/function.variant-pow.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_pow($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Rounds a variant to the specified number of decimal places
* @link https://php.net/manual/en/function.variant-round.php
* @param mixed $variant
* @param int $decimals
* @return mixed
*/
function variant_round($variant, $decimals)
{
}
/**
* (PHP 5, PHP 7)
* Convert a variant into another type "in-place"
* @link https://php.net/manual/en/function.variant-set-type.php
* @param VARIANT $variant
* @param int $type
* @return void
*/
function variant_set_type($variant, $type)
{
}
/**
* (PHP 5, PHP 7)
* Assigns a new value for a variant object
* @link https://php.net/manual/en/function.variant-set.php
* @param VARIANT $variant
* @param mixed $value
* @return void
*/
function variant_set($variant, $value)
{
}
/**
* (PHP 5, PHP 7)
* Subtracts the value of the right variant from the left variant value
* @link https://php.net/manual/en/function.variant-sub.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_sub($left, $right)
{
}
/**
* (PHP 5, PHP 7)
* Performs a logical exclusion on two variants
* @link https://php.net/manual/en/function.variant-xor.php
* @param mixed $left
* @param mixed $right
* @return mixed
*/
function variant_xor($left, $right)
{
}
__halt_compiler();----SIGNATURE:----tbwqcmFYDyMxwLc8zdyha5YCLElGfcuFmfS/ihTJvqd6MG2eKbZjH5/uxjc4kbqLveW3LTISdvv+UyLzyY/43IgZcJtRfSb10GLCydgcgOecPCqxo2YptDw6EBr4bAr7EqqU3y9nHMPbaiQQwfFdPbBuaZBIvBahfXnMSPfRk+124MY69zgWoH2fNMCsxCHEEC1RsxWfJ8S3BkGsTg1ulslDaISlmeeDMtCn2izDuYRzF7aw0rMUWUyIfe9oDMMdojXSqWLTlreLkZ0XsAvyUVc7+3ENQFXzLUAM8Kqj/wi40TGxmMw5bNjJtO8eRBZ/7Lpz80QgCxmITHEv7smPUf+8jozVkjcy6fWjEioRoD4zqzQTJ4N2Vu4bGrfptduTKurFtzulpXDUAIVT31fwVQkMBbX9zxOP8lTchrYjHKm0wxHh+Dc471vUbOVBdCi+RCfPXBGMrr6WfjRDeuRJ9hTecb0jEAkhK750JMRCsWGCq6iaXlZjn+3xtEuf/BuKQI3/QnNpmfivVjF8h73q93byvGQ8SoeYIvz+cMOMe1psc5eflWsr71zQ6Vlap7fYNjr24Hx8USF2LoHvwHEWdVaLalnPRW4mF8gymUJu9I0/XAfKc8qJzl5rDY35i4iEu+QZxbHgxcOoVfnhHWI+a3229GRUcYGGgJ4YT+7j3XY=----ATTACHMENT:----NDQ1NDE5ODE1MTQwMzYxNCA0NjU5MTA2NjgzMTIzMTc1IDU3MDU4NTAyNDE0NjQ3OTI=