blob: 534e835259397f63e08e1131dec8b6bd12739e6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*****************************************************************************
*
* Copyright (c) 1995 Microsoft Corporation
*
* File: irmac.h
*
* Description: IRLAP MAC definitions and entry point prototypes
*
* Author: mbert
*
* Date: 4/15/95
*
*/
// Entry Points
UINT IrmacInitialize();
UINT IrmacDown(
IN PVOID IrmacContext,
PIRDA_MSG pMsg);
UINT IRMAC_RxFrame(IRDA_MSG *pMsg);
UINT IRMAC_TimerExpired(IRDA_TIMER Timer);
void IRMAC_PrintState();
|