# # Copyright 2006. VMware, Inc. The use of this code is subject to # your agreement to the terms of an applicable VMware license. # package VMware::VixBinding; # Dynamic loader for Vix - C interface # Exposes nothing. # To get pieces of this interface, see # VMware::Vix::Simple (simple API) # VMware::Vix::API::* (full C API) #use 5.00503; use strict; use Carp; require DynaLoader; use AutoLoader; use vars qw($VERSION @ISA); @ISA = qw(DynaLoader); $VERSION = '0.01'; bootstrap VMware::VixBinding $VERSION; # Preloaded methods go here. # Autoload methods go after =cut, and are processed by the autosplit program. 1; __END__