Changeset 153 for sbliveos2/trunk/include
- Timestamp:
- Jul 23, 2000, 6:21:57 PM (25 years ago)
- Location:
- sbliveos2/trunk/include
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/include/dbgos2.h
r142 r153 30 30 31 31 void cdecl PrintfOut(char far *DbgStr , ...); 32 extern int dbglevel; 32 33 33 34 #ifdef __cplusplus … … 37 38 #ifdef DEBUG 38 39 #define dprintf(a) PrintfOut a 40 #define dprintf2(a) if(dbglevel >= 2) PrintfOut a 41 #define dprintf3(a) if(dbglevel >= 3) PrintfOut a 42 #define dprintf4(a) if(dbglevel >= 4) PrintfOut a 39 43 #define DebugInt3() _asm int 3 40 44 #else 41 45 #define dprintf(a) 46 #define dprintf2(a) 47 #define dprintf3(a) 48 #define dprintf4(a) 42 49 #define DebugInt3() 43 50 #endif -
sbliveos2/trunk/include/linux/mm.h
r142 r153 7 7 #include <linux/errno.h> 8 8 #include <asm/page.h> 9 #include <asm/atomic.h> 9 10 10 11 /* -
sbliveos2/trunk/include/linux/poll.h
r142 r153 8 8 #include <asm/uaccess.h> 9 9 #include <linux/wait.h> 10 #include <linux/fs.h> 10 11 11 12 #ifdef __KERNEL__ -
sbliveos2/trunk/include/linux/slab.h
r142 r153 46 46 #endif /* __KERNEL__ */ 47 47 48 extern void *kmalloc( size_t, int);48 extern void *kmalloc(int, int); 49 49 extern void kfree(const void *); 50 extern void kfree_s(const void *, size_t);50 extern void kfree_s(const void *, int); 51 51 52 52 #endif /* _LINUX_SLAB_H */ -
sbliveos2/trunk/include/linux/soundcard.h
r142 r153 828 828 #define SOUND_MIXER_READ_LINE2 MIXER_READ(SOUND_MIXER_LINE2) 829 829 #define SOUND_MIXER_READ_LINE3 MIXER_READ(SOUND_MIXER_LINE3) 830 #define SOUND_MIXER_READ_VIDEO MIXER_READ(SOUND_MIXER_VIDEO) 830 831 831 832 /* Obsolete macros */ … … 858 859 #define SOUND_MIXER_WRITE_LINE2 MIXER_WRITE(SOUND_MIXER_LINE2) 859 860 #define SOUND_MIXER_WRITE_LINE3 MIXER_WRITE(SOUND_MIXER_LINE3) 861 #define SOUND_MIXER_WRITE_VIDEO MIXER_WRITE(SOUND_MIXER_VIDEO) 860 862 861 863 /* Obsolete macros */ -
sbliveos2/trunk/include/linux/types.h
r142 r153 72 72 typedef unsigned long ulong; 73 73 74 typedef unsigned long dma_addr_t; 75 74 76 #ifndef __BIT_TYPES_DEFINED__ 75 77 #define __BIT_TYPES_DEFINED__ -
sbliveos2/trunk/include/ossidc.h
r151 r153 82 82 ULONG bufsize; 83 83 } midiread; 84 struct { 85 ULONG streamtype; 86 ULONG streamid; 87 } getspace; 84 88 struct { 85 89 ULONG param1; … … 134 138 #define IDC32_MIDI_WRITE 12 135 139 #define IDC32_MIDI_READ 13 140 #define IDC32_STREAM_GETSPACE 14 136 141 137 142 #define MIX_SETMASTERVOL 0 … … 256 261 ULONG OSS32_StreamMidiWrite(ULONG streamid, ULONG midiByte); 257 262 ULONG OSS32_StreamMidiRead(ULONG streamid, char NEAR *buffer, ULONG bufsize); 263 ULONG OSS32_StreamGetSpace(ULONG streamtype, ULONG streamid); 258 264 259 265 //Sets file id in current task structure … … 273 279 BOOL OSS16_SetGlobalVol(ULONG ulSysFileNum, USHORT line, ULONG volume); 274 280 BOOL OSS16_StreamSetFragment(STREAM *stream, ULONG fragsize); 281 ULONG OSS16_StreamGetSpace(STREAM *stream); 275 282 BOOL OSS16_AttachToPdd(); 276 283 void OSS16_DetachFromPdd(); -
sbliveos2/trunk/include/sbversion.h
r151 r153 25 25 #define __SBVERSION_H__ 26 26 27 #define SBLIVE_VERSION "0. 4.0"27 #define SBLIVE_VERSION "0.6.0" 28 28 29 29 #endif //__SBVERSION_H__ -
sbliveos2/trunk/include/version.mak
r151 r153 11 11 12 12 _VENDOR = Creative Labs SoundBlaster Live 13 _VERSION = 0. 40.00013 _VERSION = 0.60.000 14 14 15 15 FILEVER = @^#$(_VENDOR):$(_VERSION)^#@
Note:
See TracChangeset
for help on using the changeset viewer.