mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-26 08:06:58 +00:00
33 lines
757 B
C++
33 lines
757 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef REPLAYYOUTUBEAPI_H
|
|
#define REPLAYYOUTUBEAPI_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class IReplayMovie;
|
|
namespace vgui { class Panel; };
|
|
|
|
/**
|
|
* Show the YouTube login dialog and attempt to upload the movie if login was successful
|
|
* @param pMovie
|
|
* @param pParent
|
|
*/
|
|
void YouTube_ShowLoginDialog( IReplayMovie *pMovie, vgui::Panel *pParent );
|
|
|
|
/**
|
|
*
|
|
* Show the YouTube upload dialog and upload the movie
|
|
* @param pMovie
|
|
* @param pParent
|
|
*/
|
|
void YouTube_ShowUploadDialog( IReplayMovie *pMovie, vgui::Panel *pParent );
|
|
|
|
#endif // REPLAYYOUTUBEAPI_H
|