PatchBot/modules/Xming.php
2021-05-10 18:23:10 +02:00

14 lines
357 B
PHP

<?php
class Xming extends PatchBase {
function __construct() {
parent::__construct('Colin Harrison', 'Xming', 'http://www.straightrunning.com/XmingNotes/');
}
function check() : bool {
if ($this->fetch('http://www.straightrunning.com/XmingCode/version.def'))
return $this->parse('/XW32_VERSION_STRING "([\d\.]+)\\\0"/');
return false;
}
}
?>