xref: /haiku/src/add-ons/media/plugins/ape_reader/MAClib/Assembly.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 #ifndef APE_ASSEMBLY_H
2 #define APE_ASSEMBLY_H
3 
4 extern "C"
5 {
6 	void Adapt(short * pM, const short * pAdapt, int nDirection, int nOrder);
7 	int CalculateDotProduct(const short * pA, const short * pB, int nOrder);
8 	BOOL GetMMXAvailable();
9 };
10 
11 #endif // #ifndef APE_ASSEMBLY_H
12 
13