Fix building ninja all_source

Former-commit-id: f14ca94607
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-10 12:46:24 +03:00
parent f6425fe3d8
commit f3ef565768
9 changed files with 20 additions and 10 deletions

View File

@@ -11,6 +11,7 @@ class CArchitectureQueue {
public:
bool Push(const CArchitectureMessage& msg) {
x0_queue.push_back(msg);
return false; // TODO
}
void Pop(); // TODO
void Clear(); // TODO

View File

@@ -34,7 +34,7 @@ public:
float x30_;
bool x34_castShadows;
float x38_;
EFalloffType x3c_falloff;
EFallofType x3c_falloff;
float x40_;
};

View File

@@ -2,7 +2,7 @@
#define _MUSYX_SYNTH
#include "musyx/musyx_priv.h"
#ifndef __cplusplus
#ifdef __cplusplus
extern "C" {
#endif
@@ -40,7 +40,7 @@ void synthVolume(u8 volume, u16 time, u8 volgroup2, s32, s32);
/* TODO: Move this where it belongs */
void hwSetAUXProcessingCallbacks(u8 studio, SND_AUX_CALLBACK auxA, void* userA,
SND_AUX_CALLBACK auxB, void* userB);
#ifndef __cplusplus
#ifdef __cplusplus
}
#endif

View File

@@ -18,6 +18,7 @@ public:
cur = cur->get_next();
}
}
void push_back(const T&);
private:
struct node {