#!/usr/bin/env perl
# ^^^ You may need to change this to the location of your perl interpreter
# RemoteBox v3.3 (c) 2010-2024 Ian Chapman. Licenced under the terms of the GPL
use strict;
use warnings;
use utf8;
use Digest::MD5;
use FindBin qw($Bin);
use Glib ('TRUE','FALSE');
use MIME::Base64;
use POSIX qw(ceil);
use Time::HiRes qw(gettimeofday);
use Data::Dumper;

# *** PACKAGERS MAY WISH TO PATCH THIS LOCATION ***
use lib "/usr/local/share/remotebox";
# *************************************************
use vboxService qw($endpoint $fault :all);
# *** PACKAGERS MAY WISH TO PATCH THIS LOCATION ***
our $sharedir = "/usr/local/share/remotebox";
# *************************************************

require 'vboxserializers.pl';
require 'rbox_glue.pl';
require 'rbox_lists.pl';
require 'rbox_prefs.pl';
require 'rbox_gui_init.pl';
require 'rbox_newguest.pl';
require 'rbox_edit.pl';
require 'rbox_vmm.pl';
require 'rbox_err.pl';
require 'rbox_main.pl';
$|=1;
