Скачиваний:
22
Добавлен:
01.04.2014
Размер:
777 б
Скачать
// pluginDll.h : main header file for the pluginDll DLL
//

#pragma once

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#ifdef SHEET_EXPORTS
#define SHEET_API __declspec(dllexport)
#else
#define SHEET_API __declspec(dllimport)
#endif

#include "resource.h"		// main symbols


// CpluginDllApp
// See pluginDll.cpp for the implementation of this class
//

class CpluginDllApp : public CWinApp
{
public:
	CpluginDllApp();

// Overrides
public:
	virtual BOOL InitInstance();

	DECLARE_MESSAGE_MAP()
};

struct SheetControl;

SHEET_API void InitSheetControl(struct SheetControl* _c);
SHEET_API void UnInitSheetControl(void);
SHEET_API void InitSheet(void);
SHEET_API void GetSheetHotKey(WPARAM w);
Соседние файлы в папке src