mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
13 lines
294 B
C
13 lines
294 B
C
|
|
#ifndef APE_ASSEMBLY_H
|
||
|
|
#define APE_ASSEMBLY_H
|
||
|
|
|
||
|
|
extern "C"
|
||
|
|
{
|
||
|
|
void Adapt(short * pM, const short * pAdapt, int nDirection, int nOrder);
|
||
|
|
int CalculateDotProduct(const short * pA, const short * pB, int nOrder);
|
||
|
|
BOOL GetMMXAvailable();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // #ifndef APE_ASSEMBLY_H
|
||
|
|
|