30 lines
476 B
C++
30 lines
476 B
C++
// SiaDrive.Api.h : main header file for the SiaDrive.Api DLL
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error "include 'stdafx.h' before including this file for PCH"
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
// CSiaDriveApiApp
|
|
// See SiaDrive.Api.cpp for the implementation of this class
|
|
//
|
|
|
|
class CSiaDriveApiApp : public CWinApp
|
|
{
|
|
public:
|
|
CSiaDriveApiApp();
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
virtual int ExitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|