Changeset 591 for GPL/trunk/drv32
- Timestamp:
- Mar 9, 2017, 12:59:01 AM (9 years ago)
- Location:
- GPL/trunk/drv32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/drv32/Makefile
r587 r591 67 67 FILES += end.obj 68 68 69 LIBS = $(ALSA_LIB)\linuxlib.lib $(ALSA_LIB)\core.lib $(ALSA_LIB)\ac97.lib $(ALSA_LIB)\pci.lib 69 LIBS = $(ALSA_LIB)\linuxlib.lib $(ALSA_LIB)\core.lib $(ALSA_LIB)\ac97.lib $(ALSA_LIB)\pci.lib $(ALSA_LIB)\ca0106.lib $(ALSA_LIB)\hda.lib $(ALSA_LIB)\sequencer.lib $(ALSA_LIB)\opl3.lib $(ALSA_LIB)\mpu401.lib $(ALSA_LIB)\synth.lib $(ALSA_LIB)\cs46xx.lib $(ALSA_LIB)\cs5535audio.lib $(ALSA_LIB)\emu10k1.lib $(ALSA_LIB)\ymfpci.lib $(ALSA_LIB)\ali5451.lib $(ALSA_LIB)\trident.lib $(ALSA_LIB)\nm256.lib $(ALSA_LIB)\sb.lib $(ALSA_LIB)\core_oss.lib 70 70 WMAPNAME = $(OBJDIR)\$(TARGET).wmap 71 71 … … 86 86 @%write $^@ option alignment=16 87 87 @%write $^@ option map=$(WMAPNAME) 88 @$(ROOT)\tools\AddToFile.cmd $^@,$option description,BLDLEVEL,$(BLDLVL_VENDOR),$(BLDLVL_VERSION),Universal Audio Driver for OS/2 (c) 2016$(BLDLVL_VENDOR),$(BLDLVL_FIXPACK)88 @$(ROOT)\tools\AddToFile.cmd $^@,$option description,BLDLEVEL,$(BLDLVL_VENDOR),$(BLDLVL_VERSION),Universal Audio Driver for OS/2 (c) %Y $(BLDLVL_VENDOR),$(BLDLVL_FIXPACK) 89 89 @%write $^@ name $(OBJDIR)\$(TARGET).sys 90 90 @for %f in ($(FILES)) do @%append $^@ file $(OBJDIR)\%f … … 105 105 $(OBJDIR)\$(TARGET).sys: $(LNKFILE) $(FILES) $(LIBS) 106 106 @%create $(DEFFILE) 107 $(ROOT)\tools\AddToFile.cmd $(DEFFILE),description,BLDLEVEL,$(BLDLVL_VENDOR),$(BLDLVL_VERSION),Universal Audio Driver for OS/2 and eCS (c) 2014$(BLDLVL_VENDOR),$(BLDLVL_FIXPACK)107 $(ROOT)\tools\AddToFile.cmd $(DEFFILE),description,BLDLEVEL,$(BLDLVL_VENDOR),$(BLDLVL_VERSION),Universal Audio Driver for OS/2 (c) %Y $(BLDLVL_VENDOR),$(BLDLVL_FIXPACK) 108 108 $(LINK) @$(LNKFILE) 109 109 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN) -
GPL/trunk/drv32/idc.c
r587 r591 40 40 extern int pcm_device; 41 41 WORD32 OSS32IDC(ULONG cmd, PIDC32_PACKET pPacket); 42 extern BOOL fRewired; //pci.c43 42 44 43 //packet pointer must reference a structure on the stack … … 50 49 ULONG oldfileid; 51 50 OSSRET rc; 52 53 if (fRewired) {54 fRewired = FALSE;55 rprintf(("AlsaIDC: Resuming"));56 OSS32_APMResume();57 DbgPrintIrq();58 }59 51 60 52 //Sets file id in current task structure -
GPL/trunk/drv32/strategy.c
r587 r591 43 43 ULONG deviceOwner = DEV_NO_OWNER; 44 44 ULONG numOS2Opens = 0; 45 extern BOOL fRewired; //pci.c46 45 47 46 extern DBGINT DbgInt; … … 170 169 ULONG Strategy(REQPACKET __far* rp) 171 170 { 172 if (fRewired)173 {174 fRewired = FALSE;175 rprintf(("Strategy: Resuming"));176 OSS32_APMResume();177 DbgPrintIrq();178 }179 180 171 if (rp->bCommand < sizeof(StratDispatch)/sizeof(StratDispatch[0])) return(StratDispatch[rp->bCommand](rp)); 181 172 else return(RPERR_BADCOMMAND | RPDONE);
Note:
See TracChangeset
for help on using the changeset viewer.