xref: /haiku/src/add-ons/media/plugins/ape_reader/MAClib/Assembly.h (revision a7c23bb4a92806407b15fef56a5652326c3f8622)
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