home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / NETCLB35.ZIP / NETCLB35.EXE / INCLUDE / NWCONNCT.H < prev    next >
C/C++ Source or Header  |  1996-01-03  |  1KB  |  38 lines

  1. #ifndef NWCONNCT_H
  2. #define NWCONNCT_H
  3.  
  4. /**********************************/
  5. /* Connection Services prototypes */
  6. /**********************************/
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. int   AttachToFileServer(char *serverName,
  12.                  int *connectionID);
  13. int   DetachFromFileServer(char *serverName);
  14. int   EnterLoginArea(int numberOfLocalDrives,
  15.                  char *loginDirectoryName);
  16. int   GetConnectionInformation(word connectNo,
  17.                  char *objectName,
  18.                  int *objectType,long *objectID,
  19.                  byte *loginTime);
  20. int   GetConnectionNumber(void);
  21. int   GetInternetAddress(int conn_no,
  22.                  byte *networkNumber,
  23.                  byte *nodeAddress,word *socketNumber);
  24. int   GetObjectConnectionNumbers(int objectType,
  25.                  char *objectName,word *connectionCount,
  26.                  byte *connections);
  27. void  GetStationAddress(byte *physicalNodeAddress);
  28. int   LoginToFileServer(int connectionID,int objectType,
  29.                  char *objectName,
  30.                  char *objectPassword);
  31. void  LogoutFromFileServer(char *serverName);
  32. void  Logout(void);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36.  
  37. #endif
  38.