mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
87 lines
3.0 KiB
C++
87 lines
3.0 KiB
C++
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment. **
|
|
** **
|
|
** Copyright (C) 2002 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: Skate4 **
|
|
** **
|
|
** Module: GameNet **
|
|
** **
|
|
** File name: p_voice.h **
|
|
** **
|
|
** Created by: 03/12/02 - SPG **
|
|
** **
|
|
** Description: XBox Online Voice Chat Code **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __GAMENET_XBOX_P_VOICE_H
|
|
#define __GAMENET_XBOX_P_VOICE_H
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
#include <core/defines.h>
|
|
#include <sys/sioman.h>
|
|
#include <Xbox.h>
|
|
#include <XOnline.h>
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
|
|
namespace GameNet
|
|
{
|
|
|
|
/*****************************************************************************
|
|
** Class Definitions **
|
|
*****************************************************************************/
|
|
|
|
class VoiceMan
|
|
{
|
|
public:
|
|
|
|
VoiceMan( void );
|
|
|
|
void Startup( void );
|
|
void Shutdown( void );
|
|
|
|
private:
|
|
};
|
|
|
|
/*****************************************************************************
|
|
** Private Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
} // namespace GameNet
|
|
|
|
#endif // __GAMENET_XBOX_P_VOICE_H
|
|
|
|
|