cog/Sound/SoundFile/ShnFile.h

25 lines
403 B
C
Raw Normal View History

2005-06-06 17:47:29 +00:00
//
// ShnFile.h
// Cog
//
2005-07-02 21:02:06 +00:00
// Created by Vincent Spader on 6/6/05.
// Copyright 2005 Vincent Spader All rights reserved.
2005-06-06 17:47:29 +00:00
//
#import <Cocoa/Cocoa.h>
#import "SoundFile.h"
#import "Shorten/shorten.h"
#import "Shorten/shn.h"
#import "Shorten/decode.h"
@interface ShnFile : SoundFile {
shn_file *handle;
int bufferSize; //total size
void *buffer;
int bufferAmount; //amount currently in
}
@end