Files
zodiacon-WindowsInternals/CPUSTRES/CPUStressEx.h
T
Pavel Yosifovich 0bf490ecc8 added CPUSTRES
2017-02-19 12:19:57 +02:00

36 lines
574 B
C++

// CPUStressEx.h : main header file for the CPUStressEx application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CCPUStressExApp:
// See CPUStressEx.cpp for the implementation of this class
//
class CCPUStressExApp : public CWinApp
{
public:
CCPUStressExApp();
// Overrides
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// Implementation
public:
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CCPUStressExApp theApp;