A feature-rich, modular AOL Instant Messenger client written chiefly by Bill Atkins and Dan Chokola in their high school days.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
585 B

# -----------------------------------------------------------------------------
# Milkbone::Conf
# Desc: Registers hooks for loading, modifying, reading, and saving XML
# configuration.
# -----------------------------------------------------------------------------
package Milkbone::Conf;
use strict;
use warnings;
use Milkbone;
# standard modules
use XML::Simple;
# global variables
my $xml;
# exports
require Exporter;
our @EXPORT = qw(option set_option);
register_hook "save_options", sub {
};
register_hook "load_options", sub {
};
sub option {
}
sub set_option {
}
1;