1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/include/Audio/AudioCategory.h
Tom Lint 9b2110649e Updated core XFX structures
Made [out] parameters passed by reference to actually return their
result in that parameter
Replaced non-ASCII characters in some source files
2013-05-18 17:44:15 +02:00

35 lines
800 B
C++

/*****************************************************************************
* AudioCategory.h *
* *
* XFX AudioCategory definition file *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef XFX_AUDIO_AUDIOCATEGORY_H
#define XFX_AUDIO_AUDIOCATEGORY_H
#include <System/String.h>
using namespace System;
namespace XFX
{
namespace Audio
{
struct AudioCategory : Object
{
String Name;
int GetType() const;
void Pause();
void Resume();
void SetVolume(float volume);
void Stop();
bool operator!=(const AudioCategory& other) const;
bool operator==(const AudioCategory& other) const;
};
}
}
#endif // XFX_AUDIO_AUDIOCATEGORY_H