|
|
1.1 root 1: /****************************** Module Header ******************************\
2: * Module Name: session.h
3: *
4: * Copyright (c) 1991, Microsoft Corporation
5: *
6: * Remote shell session module header file
7: *
8: * History:
9: * 06-28-92 Davidc Created.
10: \***************************************************************************/
11:
12:
13: //
14: // Define session thread notification values
15: //
16:
17: typedef enum {
18: ConnectError,
19: DisconnectError,
20: ClientDisconnected,
21: ShellEnded
22: } SESSION_DISCONNECT_CODE, *PSESSION_NOTIFICATION_CODE;
23:
24:
25: //
26: // Function protoypes
27: //
28:
29: HANDLE
30: CreateSession(
31: VOID
32: );
33:
34: VOID
35: DeleteSession(
36: HANDLE SessionHandle
37: );
38:
39: HANDLE
40: ConnectSession(
41: HANDLE SessionHandle,
42: HANDLE ClientPipeHandle
43: );
44:
45: SESSION_DISCONNECT_CODE
46: DisconnectSession(
47: HANDLE SessionHandle
48: );
49:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.