blob: 534c8002977431cb96eab7d043f61e1d443fda1d (
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 VSSPROPERTIES_H
#define VSSPROPERTIES_H
#ifdef _WIN32
#pragma once
#endif
#include "basedialogparams.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
struct CVSSParams : public CBaseDialogParams
{
// Event descriptive name
char m_szUserName[ 256 ];
char m_szProject[ 256 ];
};
int VSSProperties( CVSSParams *params );
#endif // VSSPROPERTIES_H
|