Ignore:
Timestamp:
Mar 22, 2001, 7:13:01 PM (24 years ago)
Author:
sandervl
Message:

update for new direct audio interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sbliveos2/trunk/drv16/strmbuff.hpp

    r142 r166  
    4444typedef STREAMBUFFER *PSTREAMBUFFER;
    4545
     46
     47class STREAMBUFFEREX : public STREAMBUFFER
     48{
     49public:
     50    STREAMBUFFEREX(ULONG bufsize, PSTREAMBUF bufptr, ULONG lockHandle):
     51    STREAMBUFFER(bufsize, bufptr), hLock(lockHandle), fDone(FALSE)
     52    {};
     53
     54    ULONG hLock;
     55    BOOL  fDone;
     56
     57};
     58typedef STREAMBUFFEREX *PSTREAMBUFFEREX;
     59
    4660#endif
Note: See TracChangeset for help on using the changeset viewer.