equal
deleted
inserted
replaced
13 * |
13 * |
14 * You should have received a copy of the GNU General Public License |
14 * You should have received a copy of the GNU General Public License |
15 * along with this program; if not, write to the Free Software |
15 * along with this program; if not, write to the Free Software |
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
17 */ |
17 */ |
|
18 |
|
19 #include <stdio.h> |
|
20 #include <stdlib.h> |
|
21 #include <stdint.h> |
|
22 #include "al.h" |
|
23 #include "alc.h" |
|
24 #include "loaders.h" |
|
25 #include "wrappers.h" |
|
26 #include "endianness.h" |
|
27 |
|
28 #ifndef _WIN32 |
|
29 #include <pthread.h> |
|
30 #else |
|
31 #include <windows.h> |
|
32 #endif |
18 |
33 |
19 #ifndef _SLEEP_H |
34 #ifndef _SLEEP_H |
20 #define _SLEEP_H |
35 #define _SLEEP_H |
21 /** 1.0 02/03/10 - Defines cross-platform sleep, usleep, etc. * By Wu Yongwei **/ |
36 /** 1.0 02/03/10 - Defines cross-platform sleep, usleep, etc. * By Wu Yongwei **/ |
22 #ifdef _WIN32 |
37 #ifdef _WIN32 |