32 lines
763 B
C
32 lines
763 B
C
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
||
|
//
|
||
|
// File: ctv.h
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
// ctv.h : main header file for CTV.DLL
|
||
|
|
||
|
#if !defined( __AFXCTL_H__ )
|
||
|
#error include 'afxctl.h' before including this file
|
||
|
#endif
|
||
|
|
||
|
#include "resource.h" // main symbols
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CCtvApp : See ctv.cpp for implementation.
|
||
|
|
||
|
class CCtvApp : public COleControlModule
|
||
|
{
|
||
|
public:
|
||
|
BOOL InitInstance();
|
||
|
int ExitInstance();
|
||
|
};
|
||
|
|
||
|
extern const GUID CDECL _tlid;
|
||
|
extern const WORD _wVerMajor;
|
||
|
extern const WORD _wVerMinor;
|