mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-14 09:15:46 -04:00
Haiku port of duckstation libretro core (#716)
* Haiku build 1st attempt * fix load on Haiku * Removed debugging flags * Added a couple ifndef
This commit is contained in:
@ -3,7 +3,7 @@ set(SRCS
|
||||
include/libcue/cdtext.h
|
||||
include/libcue/libcue.h
|
||||
include/libcue/rem.h
|
||||
include/libcue/time.h
|
||||
include/libcue/cuetime.h
|
||||
src/cd.c
|
||||
src/cdtext.c
|
||||
src/cue_parser.c
|
||||
|
@ -5,8 +5,8 @@
|
||||
* For license terms, see the file COPYING in this distribution.
|
||||
*/
|
||||
|
||||
#ifndef TIME_H
|
||||
#define TIME_H
|
||||
#ifndef CUETIME_H
|
||||
#define CUETIME_H
|
||||
|
||||
long time_msf_to_frame(int m, int s, int f);
|
||||
void time_frame_to_msf(long frame, int *m, int *s, int *f);
|
@ -88,7 +88,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "cd.h"
|
||||
#include "time.h"
|
||||
#include "cuetime.h"
|
||||
|
||||
#ifdef CUEPARSER_BUF_SIZE
|
||||
#undef CUEPARSER_BUF_SIZE
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "cd.h"
|
||||
#include "time.h"
|
||||
#include "cuetime.h"
|
||||
|
||||
#ifdef CUEPARSER_BUF_SIZE
|
||||
#undef CUEPARSER_BUF_SIZE
|
||||
|
@ -5,7 +5,7 @@
|
||||
* For license terms, see the file COPYING in this distribution.
|
||||
*/
|
||||
|
||||
#include "time.h"
|
||||
#include "cuetime.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
Reference in New Issue
Block a user