home *** CD-ROM | disk | FTP | other *** search
/ Oracle Video Server 3.0.3.1 / OVS_3031_NT.iso / win32 / sqlnet / net23 / client / cmd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-27  |  488 b   |  26 lines

  1. /*
  2.   $Header: /netrcs/RCS/oracle/network/tns/tnsapi/RCS/cmd.h,v 1.2 1995/09/12 21:32:13 mhill Exp $
  3. */
  4.  
  5. /* 
  6.  * Header file for user command processing functions
  7.  */
  8.  
  9. #ifndef CMD
  10. #define CMD
  11.  
  12. #include "tftpdef.h"
  13.  
  14. extern char temptoken[];   /* temporary token to be used by anyone */
  15.  
  16. typedef struct Cmds {
  17.   char *cmd_name;          /* command string */
  18.   int (*cmd_func)();       /* comamnd function */
  19. }Cmds;
  20.  
  21. extern Cmds commands[];
  22. extern int ncmds;
  23.  
  24. #endif
  25.  
  26.