mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:23:13 -06:00
25 lines
640 B
C
25 lines
640 B
C
/* dphmap.h 9/4/2012 dwg - expand to include I through L */
|
||
/* dphmap.h 5/29/2012 dwg - declaration of DPH MAP structure */
|
||
|
||
struct DPHMAP {
|
||
struct DPH * drivea;
|
||
struct DPH * driveb;
|
||
struct DPH * drivec;
|
||
struct DPH * drived;
|
||
struct DPH * drivee;
|
||
struct DPH * drivef;
|
||
struct DPH * driveg;
|
||
struct DPH * driveh;
|
||
|
||
struct DPH * drivei;
|
||
struct DPH * drivej;
|
||
struct DPH * drivek;
|
||
struct DPH * drivel;
|
||
} * pDPHMAP;
|
||
|
||
struct DPHMAP * pDPHVEC[MAXDRIVE];
|
||
|
||
|
||
/******************/
|
||
/* eof - dphmap.h */
|
||
/******************/ |