|
-
Dec 13th, 2001, 05:09 AM
#1
Thread Starter
Addicted Member
Comparing Buffers
I'm just wondering, is it possible to compare two buffers in Direct X 7? AKA, if the WAV files loaded into both the buffers are the same? Would it be a simple case of this?
Code:
If Buffer1 = Buffer2 then
Match = True
Else
Match = False
End If
Does anyone know? Thanks for any help.
-Git
-
Dec 13th, 2001, 08:04 PM
#2
Frenzied Member
Maybe you could store the buffers in a UDT, like this:
VB Code:
Private Type tSoundBuffer
Name As String
Buffer As (whatever)
End Type
Just compare their names
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|