vman.h 292 B

1234567891011121314151617181920
  1. #ifndef AVM_VMAN_H
  2. #define AVM_VMAN_H 1
  3. #include <avm/common.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern void avm_set_version (char *number);
  9. extern int avm_prior_to_version (char *number);
  10. extern char *avm_version ();
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* !AVM_VMAN_H */