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.
33 lines
927 B
33 lines
927 B
/****************************************************************************/
|
|
// acaafn.h
|
|
//
|
|
// Function prototypes for CA API functions
|
|
//
|
|
// Copyright (C) 1996-2000 Microsoft Corporation
|
|
/****************************************************************************/
|
|
|
|
void RDPCALL CA_Init(void);
|
|
|
|
void RDPCALL SHCLASS CA_ReceivedPacket(PTS_CONTROL_PDU, unsigned,
|
|
LOCALPERSONID);
|
|
|
|
BOOL RDPCALL CA_PartyJoiningShare(LOCALPERSONID, unsigned);
|
|
|
|
void RDPCALL CA_PartyLeftShare(LOCALPERSONID, unsigned);
|
|
|
|
void RDPCALL CA_SyncNow(void);
|
|
|
|
BOOL RDPCALL CASendMsg(UINT16, UINT16, UINT32);
|
|
|
|
BOOL RDPCALL CAFlushAndSendMsg(UINT16, UINT16, UINT32);
|
|
|
|
void RDPCALL CAEvent(unsigned, UINT32);
|
|
|
|
|
|
/****************************************************************************/
|
|
// CA_Term
|
|
/****************************************************************************/
|
|
void RDPCALL SHCLASS CA_Term()
|
|
{
|
|
}
|
|
|