openalbridge/globals.h
changeset 2261 57e99c908e7c
parent 2260 31756e21c436
child 2415 35d09cbf819a
equal deleted inserted replaced
2260:31756e21c436 2261:57e99c908e7c
    20 #define _OALB_GLOBALS_H
    20 #define _OALB_GLOBALS_H
    21 
    21 
    22 #include <stdio.h>
    22 #include <stdio.h>
    23 #include <stdlib.h>
    23 #include <stdlib.h>
    24 #include <stdint.h>
    24 #include <stdint.h>
    25 #include <stdbool.h>
       
    26 #include <string.h>
    25 #include <string.h>
    27 
    26 
    28 #ifndef _WIN32
    27 #ifndef _WIN32
    29 #include <pthread.h>
    28 #include <pthread.h>
    30 #else
    29 #else
   100         uint16_t quantity;
    99         uint16_t quantity;
   101     } fade_t;
   100     } fade_t;
   102 #pragma pack()
   101 #pragma pack()
   103     
   102     
   104     /*other defines*/
   103     /*other defines*/
   105 #define FADE_IN	 true
   104 #define FADE_IN	 AL_TRUE
   106 #define FADE_OUT false
   105 #define FADE_OUT AL_FALSE
   107     
   106     
   108 #ifdef __CPLUSPLUS
   107 #ifdef __CPLUSPLUS
   109 }
   108 }
   110 #endif
   109 #endif
   111 
   110