Changeset 171 for sbliveos2/trunk
- Timestamp:
- Mar 26, 2001, 12:06:43 AM (24 years ago)
- Location:
- sbliveos2/trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/include/daudio.h
r164 r171 24 24 struct 25 25 { 26 ULONG Volume; // left & right volume (high/low word) 26 ULONG VolumeL; // left volume (0..100) 27 ULONG VolumeR; // right volume (0..100) 27 28 } Vol; 28 29 struct -
sbliveos2/trunk/include/ossidc.h
r153 r171 161 161 162 162 #define MAKE_VOLUME_LR(l, r) ((r << 8) | l) 163 164 #define GET_VOLUME_R(vol) (vol >> 8) 165 #define GET_VOLUME_L(vol) (vol & 0xff) 163 166 164 167 #define MIX_RECSRC_MIC 0
Note:
See TracChangeset
for help on using the changeset viewer.