mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
20 lines
335 B
C
20 lines
335 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef WAVEOUT_H
|
||
|
#define WAVEOUT_H
|
||
|
#pragma once
|
||
|
|
||
|
|
||
|
#include "iwaveout.h"
|
||
|
|
||
|
|
||
|
IWaveOut* CreateWaveOut(int sampleRate);
|
||
|
|
||
|
|
||
|
#endif // WAVEOUT_H
|