blob: 047ac7f18865817f8928d4a44219d9392baeb7d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef CCLOOKUP_H
#define CCLOOKUP_H
#ifdef _WIN32
#pragma once
#endif
#include "basedialogparams.h"
#include "utlvector.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
struct CCloseCaptionLookupParams : public CBaseDialogParams
{
char m_szCCToken[ 1024 ];
};
// Display/create dialog
int CloseCaptionLookup( CCloseCaptionLookupParams *params );
#endif // CCLOOKUP_H
|