-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorAndMono.h
More file actions
45 lines (33 loc) · 1.15 KB
/
ColorAndMono.h
File metadata and controls
45 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//************************************************************************
// The Logitech LCD SDK, including all acompanying documentation,
// is protected by intellectual property laws. All use of the Logitech
// LCD SDK is subject to the License Agreement found in the
// "Logitech LCD SDK License Agreement" file and in the Reference Manual.
// All rights not expressly granted by Logitech are reserved.
//************************************************************************
// ColorAndMono.h : main header file for the PROJECT_NAME application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CColorAndMonoApp:
// See ColorAndMono.cpp for the implementation of this class
//
class CColorAndMonoApp : public CWinApp
{
public:
CColorAndMonoApp();
// Overrides
public:
virtual BOOL InitInstance();
virtual INT ExitInstance();
// Implementation
DECLARE_MESSAGE_MAP()
protected:
HANDLE m_hMutex;
ULONG_PTR m_gdiplusToken;
HANDLE ClaimMutex(LPCTSTR szMutex, LPCTSTR szWndClassName);
};
extern CColorAndMonoApp theApp;