home *** CD-ROM | disk | FTP | other *** search
/ Software Collection (I) / TOOLS.iso / b04 / 18.img / NET / WNETCONS.IN_ / WNETCONS.IN
Encoding:
Text File  |  1991-04-19  |  765 b   |  27 lines

  1. ;===============================================================================
  2. ;        File    WNETCONS.INC
  3. ;===============================================================================
  4.  
  5. ;        Connection List Structure
  6.  
  7. CONNLIST    struc
  8.         clLocal         dw    ?    ; redirected local device
  9.         clRemote        dw    ?    ; name of remote resource
  10.         clStatus        dw    ?    ; status see NGC_
  11.         clType            dw    ?    ; see STYPE_
  12. CONNLIST    ends
  13.  
  14. ;        Values for CONNLIST.clStatus
  15.  
  16.         WNGC_OK         equ    00h    ; Ok
  17.         WNGC_PAUSED        equ    01h    ; The connection is paused
  18.         WNGC_DISCONNECTED    equ    02h    ; The connection is disconnected
  19.         WNGC_ERROR        equ    03h    ; The network is down (again!)
  20.  
  21. ;        Values for CONNLIST.clType
  22.  
  23.         WNGC_DISKTREE        equ    01h
  24.         WNGC_PRINTQ        equ    02h
  25.         WNGC_DEVICE        equ    03h
  26.         WNGC_IPC        equ    04h
  27.