home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / ncsat.cpt / Telnet2.5 final / main / maclook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-05  |  2.5 KB  |  190 lines

  1.  
  2. extern void putln                                    /* Put a C string on the console */
  3.   (
  4.     char *cp
  5.   );
  6.  
  7. extern int initipnum
  8.   (
  9.     int button
  10.   );
  11.  
  12. extern int isHFS
  13.   (
  14.     void
  15.   );
  16.  
  17. extern void setgraphcurs                    /* Called at start of gin */
  18.   (
  19.     void
  20.   );
  21.  
  22. extern void unsetgraphcurs                    /* Called at start of gin */
  23.   (
  24.     void
  25.   );
  26.  
  27. extern int findbyVS                        /* Find screen index by VS Number */
  28.   (
  29.     int vs
  30.   );
  31.  
  32. extern void UItemAssign                    /* BYU 2.4.19 MPW */
  33.   (
  34.     DialogPtr dlog,
  35.     int item,
  36.     int (*proc)()
  37.   );
  38.  
  39. extern void ftpmess                                /* Put a C string on the console */
  40.   (
  41.     char *cp
  42.   );
  43.  
  44. extern void parse
  45.   (
  46.     struct WindRec *tw,
  47.     unsigned char *st,
  48.     int cnt
  49.   );
  50.  
  51. extern void destroyport
  52.   (
  53.     int wind
  54.   );
  55.  
  56. extern void removeport
  57.   (
  58.     int wind
  59.   );
  60.  
  61. extern void xferstart                    /* Called at start of FTP */
  62.   (
  63.     void
  64.   );
  65.  
  66. extern void xferdone                    /* Called at end of FTP */
  67.   (
  68.     void
  69.   );
  70.  
  71. extern int decodeIPnum                /* BYU 2.4.15 */
  72.   (                                    /* BYU 2.4.15 */
  73.     char *s,                        /* BYU 2.4.15 */
  74.     unsigned char *myipnum            /* BYU 2.4.15 */
  75.   );                                /* BYU 2.4.15 */
  76.  
  77. extern int VGalive
  78.   (
  79.     int dnum
  80.   );
  81.  
  82. extern void TekEnable
  83.   (
  84.     int vg
  85.   );
  86.  
  87. extern int driverconf
  88.   (
  89.     void
  90.   );
  91.  
  92. extern int addport
  93.   (
  94.     ConfigRec *config
  95.   );
  96.  
  97. extern int PromptIP
  98.   (
  99.     int dynam
  100.   );
  101.  
  102. extern int DynamIP
  103.   (
  104.     char *ipnum
  105.   );
  106.  
  107. extern int RegIP
  108.   (
  109.     char *ipnum
  110.   );
  111.  
  112. extern void setnetconfigs
  113.   (
  114.     char *ipnum,
  115.     long *netmask
  116.   );
  117.  
  118. /*extern int findbyWind                    
  119.   (
  120.     GrafPtr wn
  121.   ); */
  122.  
  123. extern void destroyGraphics
  124.   (
  125.     int dnum
  126.   );
  127.  
  128. extern void TekDisable
  129.   (
  130.     int vg
  131.   );
  132.  
  133. extern int detachGraphics
  134.   (
  135.     int dnum
  136.   );
  137.  
  138.  
  139.  
  140. #define NCMDS        48
  141. #define    QMARK           1
  142. #define BANG         2
  143. #define ASCII         3
  144. #define BELL         4
  145. #define BGET         5
  146. #define BINARY       6
  147. #define BPUT         7
  148. #define BYE           8
  149. #define CD            9
  150. #define CLOSE        10
  151. #define DEL         11
  152. #define DEBUG        12
  153. #define DIR          13
  154. #define GET          14
  155. #define GLOB         15
  156. #define HASH         16
  157. #define HELP         17
  158. #define INTERACTIVE 18
  159. #define LCD          19
  160. #define LLS            20
  161. #define LS            21
  162. #define MDELETE     22
  163. #define MDIR         23
  164. #define MGET         24
  165. #define MKDIR        25
  166. #define MLS          26
  167. #define MODE         27
  168. #define MPUT         28
  169. #define NONINTERACTIVE 29
  170. #define OPEN         30
  171. #define PROMPT      31
  172. #define PUT          32
  173. #define PWD          33
  174. #define QUIT         34
  175. #define QUOTE        35
  176. #define RECV         36
  177. #define REMOTEHELP     37
  178. #define RENAME      38
  179. #define RM            39
  180. #define RMDIR        40
  181. #define SEND         41
  182. #define SENDPORT     42
  183. #define SLASHFLIP     43
  184. #define STATUS      44
  185. #define STRUCT      45
  186. #define TYPE        46
  187. #define USER         47
  188. #define VERBOSE     48
  189.  
  190.