#ifndef DALREG_H
#define DALREG_H
/*======================================================
FILE: DALReg.h

SERVICES:
  DAL Driver Registry

GENERAL DESCRIPTION:

PUBLIC CLASSES AND STATIC FUNCTIONS:

INITIALIZATION & SEQUENCING REQUIREMENTS:
  None.

        Copyright © 2007 Qualcomm Technologies Incorporated.
               All Rights Reserved.
=====================================================*/
#include "DalDevice.h"

//Following structure represents the Driver information
typedef struct DALREG_DriverInfo DALREG_DriverInfo;
struct DALREG_DriverInfo
{
	DALResult (*pfnDALNewFunc)(const char * , DALDEVICEID, DalDeviceHandle**);
	uint32 dwNumDevices;
	DALDEVICEID *pDeviceId;
};

//Following structure represents info regarding all drivers for a process
typedef struct DALREG_DriverInfoList DALREG_DriverInfoList;
struct DALREG_DriverInfoList
{
	uint32 dwLen;
	DALREG_DriverInfo ** pDriverInfo;
};

/*=====================================================================
INTERFACES DOCUMENTATION
=======================================================================
TODO
=======================================================================*/
#endif /* DALREG_H */
