mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- fixed compilation on Linux
libraries/oplsynth/oplio.cpp:59:32: error: ‘memset’ was not declared in this scope src/sound/mididevices/midi_cvars.cpp:43:31: error: expected initializer before ‘GetSystemDirectoryA’
This commit is contained in:
parent
315e15c7f0
commit
b5e1656c8e
2 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,8 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include "genmidi.h"
|
#include "genmidi.h"
|
||||||
#include "oplio.h"
|
#include "oplio.h"
|
||||||
#include "opl.h"
|
#include "opl.h"
|
||||||
|
|
|
@ -39,8 +39,10 @@
|
||||||
#include "cmdlib.h"
|
#include "cmdlib.h"
|
||||||
#include "doomerrors.h"
|
#include "doomerrors.h"
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
// do this without including windows.h for this one single prototype
|
// do this without including windows.h for this one single prototype
|
||||||
extern "C" unsigned __stdcall GetSystemDirectoryA(char* lpBuffer, unsigned uSize);
|
extern "C" unsigned __stdcall GetSystemDirectoryA(char* lpBuffer, unsigned uSize);
|
||||||
|
#endif // _WIN32
|
||||||
|
|
||||||
static void CheckRestart(int devtype)
|
static void CheckRestart(int devtype)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue