Remove redundant void argument list in function def
[openal-soft.git] / Alc / cpu_caps.h
blob1d867f375131c829e1f33c7af9ccfa7ce9e533c1
1 #ifndef CPU_CAPS_H
2 #define CPU_CAPS_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 extern int CPUCapFlags;
9 enum {
10 CPU_CAP_SSE = 1<<0,
11 CPU_CAP_SSE2 = 1<<1,
12 CPU_CAP_SSE3 = 1<<2,
13 CPU_CAP_SSE4_1 = 1<<3,
14 CPU_CAP_NEON = 1<<4,
17 void FillCPUCaps(int capfilter);
19 #ifdef __cplusplus
20 } // extern "C"
21 #endif
23 #endif /* CPU_CAPS_H */