summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/madge/driver/head_mod/hwi_pcmc.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/ntos/ndis/madge/driver/head_mod/hwi_pcmc.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/private/ntos/ndis/madge/driver/head_mod/hwi_pcmc.h b/private/ntos/ndis/madge/driver/head_mod/hwi_pcmc.h
new file mode 100644
index 000000000..5ab0c7e13
--- /dev/null
+++ b/private/ntos/ndis/madge/driver/head_mod/hwi_pcmc.h
@@ -0,0 +1,77 @@
+/****************************************************************************/
+/****************************************************************************/
+/* */
+/* THE HARDWARE INTERFACE MODULE (PCMCIA CARDS) */
+/* ============================================ */
+/* */
+/* HWI_PCMC.H : Part of the FASTMAC TOOL-KIT (FTK) */
+/* */
+/* Copyright (c) Madge Networks Ltd. 1990-1993 */
+/* Developed by VL */
+/* From code by MF, NT */
+/* CONFIDENTIAL */
+/* */
+/* */
+/****************************************************************************/
+/* */
+/* The purpose of the Hardware Interface (HWI) is to supply an adapter card */
+/* independent interface to any driver. It performs nearly all of the */
+/* functions that involve affecting SIF registers on the adapter cards. */
+/* This includes downloading code to, initializing, and removing adapters. */
+/* */
+/* The HWI_PCMC.H file contains the exported function definitions for the */
+/* HWI_PCMC.C module. */
+/* */
+/****************************************************************************/
+
+/****************************************************************************/
+/* */
+/* VERSION_NUMBER of FTK to which this HWI_PCMC.H belongs : */
+/* */
+
+#define FTK_VERSION_NUMBER_HWI_PCMC_H 221
+
+
+/****************************************************************************/
+
+export UINT hwi_pcmcia_probe_card(
+
+ PROBE * resources,
+ UINT length,
+ WORD * valid_locations,
+ UINT number_locations
+ );
+
+export WBOOLEAN hwi_pcmcia_deprobe_card(
+
+ PROBE resource
+ );
+
+extern WBOOLEAN hwi_pcmcia_install_card(
+
+ ADAPTER * adapter,
+ DOWNLOAD_IMAGE * download_image
+ );
+
+extern void hwi_pcmcia_interrupt_handler(
+
+ ADAPTER * adapter
+ );
+
+extern void hwi_pcmcia_remove_card(
+
+ ADAPTER * adapter
+ );
+
+extern void hwi_pcmcia_set_dio_address(
+
+ ADAPTER * adapter,
+ DWORD dio_address
+ );
+
+
+/* */
+/* */
+/************** End of HWI_PCMC.H file **************************************/
+/* */
+/* */