Path: blob/master/libmupen64plus/mupen64plus-rsp-hle/src/alist_internal.h
2 views
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *1* Mupen64plus-rsp-hle - alist_internal.h *2* Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *3* Copyright (C) 2002 Hacktarux *4* *5* This program is free software; you can redistribute it and/or modify *6* it under the terms of the GNU General Public License as published by *7* the Free Software Foundation; either version 2 of the License, or *8* (at your option) any later version. *9* *10* This program is distributed in the hope that it will be useful, *11* but WITHOUT ANY WARRANTY; without even the implied warranty of *12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *13* GNU General Public License for more details. *14* *15* You should have received a copy of the GNU General Public License *16* along with this program; if not, write to the *17* Free Software Foundation, Inc., *18* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *19* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */2021#ifndef ALIST_INTERNAL_H22#define ALIST_INTERNAL_H2324#include "hle.h"2526typedef void (*acmd_callback_t)(u32 inst1, u32 inst2);2728/*29* Audio flags30*/3132#define A_INIT 0x0133#define A_CONTINUE 0x0034#define A_LOOP 0x0235#define A_OUT 0x0236#define A_LEFT 0x0237#define A_RIGHT 0x0038#define A_VOL 0x0439#define A_RATE 0x0040#define A_AUX 0x0841#define A_NOAUX 0x0042#define A_MAIN 0x0043#define A_MIX 0x104445extern u16 AudioInBuffer, AudioOutBuffer, AudioCount;46extern u16 AudioAuxA, AudioAuxC, AudioAuxE;47extern u32 loopval; // Value set by A_SETLOOP : Possible conflict with SETVOLUME???4849#endif505152