Home | History | Annotate | Download | only in sppptun
      1 /*
      2  * sppptun_mod.h - References between sppptun.c and sppptun_mod.c
      3  *
      4  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
      5  * Use is subject to license terms.
      6  */
      7 
      8 #ifndef	_SPPPTUN_MOD_H
      9 #define	_SPPPTUN_MOD_H
     10 
     11 #pragma ident	"%Z%%M%	%I%	%E% SMI"
     12 
     13 #ifdef	__cplusplus
     14 extern "C" {
     15 #endif
     16 
     17 extern struct streamtab sppptun_tab;
     18 extern void sppptun_init(void);
     19 extern void sppptun_tcl_init(void);
     20 extern int sppptun_tcl_fintest(void);
     21 extern void sppptun_tcl_fini(void);
     22 
     23 /*
     24  * Description strings kept in sppptun.c because we're more interested
     25  * in the revision of that module.
     26  */
     27 extern const char sppptun_driver_description[];
     28 extern const char sppptun_module_description[];
     29 
     30 #ifdef	__cplusplus
     31 }
     32 #endif
     33 
     34 #endif /* _SPPPTUN_MOD_H */
     35