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.
25 lines
1009 B
25 lines
1009 B
/****************************************************************************/
|
|
/* ascapi.h */
|
|
/* */
|
|
/* Share Controller API Header File. */
|
|
/* */
|
|
/* Copyright(c) Microsoft, PictureTel 1992-1996 */
|
|
/* (C) 1997-1999 Microsoft Corp. */
|
|
/****************************************************************************/
|
|
#ifndef _H_ASCAPI
|
|
#define _H_ASCAPI
|
|
|
|
// Hardcoded max users in share, and PersonID values corresponding to them.
|
|
#define SC_DEF_MAX_PARTIES 3
|
|
|
|
#define SC_LOCAL_PERSON_ID 0
|
|
#define SC_REMOTE_PERSON_ID 1
|
|
#define SC_SHADOW_PERSON_ID 2
|
|
|
|
|
|
// Size of sample for MPPC compression statistics.
|
|
#define SC_SAMPLE_SIZE 65535
|
|
|
|
|
|
|
|
#endif /* #ifndef _H_ASCAPI */
|