You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
494 B
40 lines
494 B
/*++
|
|
|
|
Copyright (c) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
clstate.h
|
|
|
|
Abstract:
|
|
|
|
defines for gpc client state machine code
|
|
|
|
Author:
|
|
|
|
Yoram Bernet (yoramb) 28-Dec-1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _CLSTATE_
|
|
#define _CLSTATE_
|
|
|
|
/* Prototypes */
|
|
|
|
VOID
|
|
InternalCloseCall(
|
|
PGPC_CLIENT_VC Vc
|
|
);
|
|
|
|
VOID
|
|
CallSucceededStateTransition(
|
|
PGPC_CLIENT_VC Vc
|
|
);
|
|
|
|
/* End Prototypes */
|
|
|
|
#endif /* _CLSTATE_ */
|
|
|
|
/* end clstate.h */
|