forked from marknelson/ServiceBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceBrowser.h
45 lines (33 loc) · 980 Bytes
/
ServiceBrowser.h
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
//
// Copyright (c) 2011 Mark Nelson
//
// This software is licensed under the OSI MIT License, contained in
// the file license.txt included with this project.
//
// https://github.com/marknelson/ServiceBrowser
// https://marknelson.us/posts/2011/10/25/dns-service-discovery-on-windows.html
// Copyright (c) 2020 Olivier Levon
// https://github.com/olivierlevon/ServiceBrowser
//
// ServiceBrowser.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
// CServiceBrowserApp:
// See ServiceBrowser.cpp for the implementation of this class
//
class CServiceBrowserApp : public CWinApp
{
public:
CServiceBrowserApp();
virtual ~CServiceBrowserApp();
// Overrides
public:
virtual BOOL InitInstance();
// Implementation
DECLARE_MESSAGE_MAP()
};
extern CServiceBrowserApp theApp;