Cocoa Port: Clean out utilities.c a little bit more.

This commit is contained in:
rogerman 2017-01-10 23:57:47 -08:00
parent 669487ff05
commit 07a68dbb7a
4 changed files with 3 additions and 9 deletions

View File

@ -22,6 +22,7 @@
#include "audiosamplegenerator.h"
#include <math.h>
#include <string.h>
#include "cocoa_globals.h"
#define NUM_INTERNAL_NOISE_SAMPLES 32

View File

@ -19,6 +19,7 @@
#define _AUDIO_SAMPLE_GENERATOR_
#include <stdint.h>
#include <stdlib.h>
class AudioGenerator

View File

@ -16,14 +16,7 @@
*/
#include "utilities.h"
#include <Accelerate/Accelerate.h>
static const uint8_t bits5to8[] = {
0x00, 0x08, 0x10, 0x19, 0x21, 0x29, 0x31, 0x3A,
0x42, 0x4A, 0x52, 0x5A, 0x63, 0x6B, 0x73, 0x7B,
0x84, 0x8C, 0x94, 0x9C, 0xA5, 0xAD, 0xB5, 0xBD,
0xC5, 0xCE, 0xD6, 0xDE, 0xE6, 0xEF, 0xF7, 0xFF
};
#include <ApplicationServices/ApplicationServices.h>
static CFStringRef OSXProductName = NULL;
static CFStringRef OSXProductVersion = NULL;

View File

@ -18,7 +18,6 @@
#ifndef _COCOA_PORT_UTILITIES_
#define _COCOA_PORT_UTILITIES_
#include <ApplicationServices/ApplicationServices.h>
#include <stdbool.h>
#include <stdint.h>