removed deps from 3rdparty to osd (nw)

This commit is contained in:
Miodrag Milanovic 2015-09-13 12:45:56 +02:00
parent 05c7edb199
commit e3a6e9b0b8
3 changed files with 27 additions and 4 deletions

View File

@ -15,10 +15,17 @@
#include "string.h"
#include "porttime.h"
#include "pmlinux.h"
#include "osdcomm.h"
#include <alsa/asoundlib.h>
typedef unsigned int UINT32;
__extension__ typedef unsigned long long UINT64;
#ifdef PTR64
typedef UINT64 FPTR;
#else
typedef UINT32 FPTR;
#endif
/* I used many print statements to debug this code. I left them in the
* source, and you can turn them on by changing false to true below:
*/

View File

@ -19,7 +19,24 @@
#include "pmwinmm.h"
#include <string.h>
#include "porttime.h"
#include "osdcomm.h"
#ifndef _WINDOWS_H
typedef unsigned int UINT32;
#endif
#ifndef _WINDOWS_H
#ifdef _MSC_VER
typedef unsigned __int64 UINT64;
#else
__extension__ typedef unsigned long long UINT64;
#endif
#endif
#ifdef PTR64
typedef UINT64 FPTR;
#else
typedef UINT32 FPTR;
#endif
/* asserts used to verify portMidi code logic is sound; later may want
something more graceful */

View File

@ -500,7 +500,6 @@ project "portmidi"
kind "StaticLib"
includedirs {
MAME_DIR .. "src/osd",
MAME_DIR .. "3rdparty/portmidi/pm_common",
MAME_DIR .. "3rdparty/portmidi/porttime",
}