mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
33 lines
789 B
C++
33 lines
789 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
|