summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/madge/driver/head_mod/sys_allo.h
blob: 4a959b90fe8aabb5fb78528583128a37c148bcee (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/****************************************************************************/
/****************************************************************************/
/*                                                                          */
/*      THE DOS SYSTEM SPECIFIC MODULE (ALLOCATE/FREE MEMORY)               */
/*      =====================================================               */
/*                                                                          */
/*      SYS_ALLO.H : Part of the FASTMAC TOOL-KIT (FTK)                     */
/*                                                                          */
/*      Copyright (c) Madge Networks Ltd. 1991-1994                         */
/*      Developed by MF                                                     */
/*      CONFIDENTIAL                                                        */
/*                                                                          */
/*                                                                          */
/****************************************************************************/
/*                                                                          */
/* The purpose of the DOS  system  specific  module  is  to  provide  those */
/* services  that  are  influenced  by  the operating system. This includes */
/* memory allocation routines, interrupt and DMA channel enabling/disabling */
/* routines, and routines for accessing IO ports.                           */
/*                                                                          */
/* The SYS_ALLO.H file contains the exported function  definitions  for the */
/* SYS_ALLO.C module.                                                       */
/*                                                                          */
/****************************************************************************/

/****************************************************************************/
/*                                                                          */
/* VERSION_NUMBER of FTK to which this SYS_ALLO.H belongs :                 */
/*                                                                          */

#define FTK_VERSION_NUMBER_SYS_ALLO_H 221


/****************************************************************************/

extern BYTE *   sys_alloc_init_block(

                        ADAPTER_HANDLE adapter_handle,
                        WORD           init_block_byte_size
                        );

extern BYTE *   sys_alloc_adapter_structure(

                        ADAPTER_HANDLE adapter_handle,
                        WORD           adapter_structure_byte_size
                        );

extern BYTE *   sys_alloc_status_structure(

                        ADAPTER_HANDLE adapter_handle,
                        WORD           status_structure_byte_size
                        );

extern WBOOLEAN  sys_alloc_dma_phys_buffer(

                        ADAPTER_HANDLE adapter_handle,
                        DWORD          buffer_byte_size,
                        DWORD        * phys,
                        DWORD        * virt
                        );

extern void     sys_free_init_block(

                        ADAPTER_HANDLE adapter_handle,
                        BYTE *         init_block_addr,
                        WORD           init_block_byte_size
                        );

extern void     sys_free_adapter_structure(

                        ADAPTER_HANDLE adapter_handle,
                        BYTE *         adapter_structure_addr,
                        WORD           adapter_structure_byte_size
                        );

extern void     sys_free_status_structure(

                        ADAPTER_HANDLE adapter_handle,
                        BYTE *         status_structure_addr,
                        WORD           status_structure_byte_size
                        );

extern void     sys_free_dma_phys_buffer(

                        ADAPTER_HANDLE adapter_handle,
                        DWORD          buffer_byte_size,
                        DWORD          phys,
                        DWORD          virt
                        );

/*                                                                          */
/*                                                                          */
/************** End of SYS_ALLO.H file **************************************/
/*                                                                          */
/*                                                                          */