| vbAccelerator - Contents of code file: WinAmpPluginWrapper_WinAmpPluginWrapper.hThis file is part of the download Winamp Plugin Wrapper, which is described in the article Using WinAmp In Plugins From VB. // WinAmpPluginWrapper.h : main header file for the WinAmpPluginWrapper DLL
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
#include "WinAmpSndStream.h"
// CWinAmpPluginWrapperApp
// See WinAmpPluginWrapper.cpp for the implementation of this class
//
class CWinAmpPluginWrapperApp : public CWinApp
{
public:
CWinAmpPluginWrapperApp();
// Overrides
public:
virtual BOOL InitInstance();
DECLARE_MESSAGE_MAP()
};
| |||
|
|
||||