/*********************************************************/
//	NkILSampleDoc.h
//		Header file of ImageSDKLibrary Sample class.
//
//	Copyright(c) 2007, Nikon Corporation - All rights reserved.
/*********************************************************/
#pragma once

#ifndef __AFXWIN_H__
	#error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h"       // main symbols

// user defined message 
#define MSG_WM_DELETE_SET1DLG		WM_USER + 0x0010
#define MSG_WM_DELETE_SET2DLG		WM_USER + 0x0011
#define MSG_WM_DELETE_INFODLG		WM_USER + 0x0012
#define MSG_WM_APPLY_SET1DLG		WM_USER + 0x0020
#define MSG_WM_APPLY_SET2DLG		WM_USER + 0x0021

// CNkILSampleApp:
// See NkILSample.cpp for the implementation of this class
//
class CNkILSampleApp : public CWinApp
{
public:
	CNkILSampleApp();

// Overrides
	virtual BOOL InitInstance();
	virtual int	 ExitInstance();

// Implementation
	afx_msg void OnAppAbout();
	DECLARE_MESSAGE_MAP()
protected:	
};

extern CNkILSampleApp theApp;