You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
757 B
33 lines
757 B
5 years ago
|
//========= 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
|