1 #include "ux_api.h"
2 
inpb(ULONG addr)3 UCHAR   inpb(ULONG addr){return(0);}
inpw(ULONG addr)4 USHORT  inpw(ULONG addr){return(0);}
inpl(ULONG addr)5 ULONG   inpl(ULONG addr){return(0);}
6 
outpb(ULONG addr,UCHAR b)7 UCHAR outpb(ULONG addr, UCHAR b){return(b);}
outpw(ULONG addr,USHORT w)8 USHORT  outpw(ULONG addr, USHORT w){return(w);}
outpl(ULONG addr,ULONG l)9 ULONG outpl(ULONG addr, ULONG l){return(l);}
10 
ux_test_assert_hit(char * file,INT line)11 void ux_test_assert_hit(char* file, INT line){};