37 lines
823 B
C++
37 lines
823 B
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file P3DActiveX.h
|
|
* @author atrestman
|
|
* @date 2009-09-14
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// P3DActiveX.h : main header file for P3DActiveX.DLL
|
|
|
|
#if !defined( __AFXCTL_H__ )
|
|
#error include 'afxctl.h' before including this file
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
// CP3DActiveXApp : See P3DActiveX.cpp for implementation.
|
|
|
|
class CP3DActiveXApp : public COleControlModule
|
|
{
|
|
public:
|
|
BOOL InitInstance();
|
|
int ExitInstance();
|
|
};
|
|
|
|
extern const GUID CDECL _tlid;
|
|
extern const WORD _wVerMajor;
|
|
extern const WORD _wVerMinor;
|