//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
/*++
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.

Module Name:  

Abstract:

Platform dependent PCMCIA initialization functions

Notes: 
--*/
#ifndef __CBTURPLE_H_
#define __CBTURPLE_H_

#define CISTPL_BAR 0x07

#include <tuple.h>

typedef struct _PARSED_CBCFTABLE
{
    UINT8       ConfigIndex;    // @field Value to be written to the configuration option
    // register to enable this CFTABLE_ENTRY.
    UINT8       ContainsDefaults;   // @field True if this entry contains defaults to be used by subsequent entries.

    POWER_DESCR VccDescr;   // @field Power description of Vcc
    POWER_DESCR Vpp1Descr;  // @field Power description of Vpp1
    POWER_DESCR Vpp2Descr;  // @field Power description of Vpp2
    BYTE        bUsedBarForIo;
    WORD        wIrqMask;
    BYTE        bUsedBarForMem;
} PARSED_CBCFTABLE, * PPARSED_CBCFTABLE;


#endif
