add winpcap 4.0.2 from url http://www.winpcap.org/
[natblaster.git] / winpcap / Examples / NETMETER / CapDll.h
bloba504b4a913242dc81d2a7d17e8fa7b166a7062c2
1 /*
2 * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)
3 * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the Politecnico di Torino, CACE Technologies
16 * nor the names of its contributors may be used to endorse or promote
17 * products derived from this software without specific prior written
18 * permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #if !defined(AFX_CapDll_H__03FA9206_C8EA_11D2_B729_0048540133F7__INCLUDED_)
36 #define AFX_CapDll_H__03FA9206_C8EA_11D2_B729_0048540133F7__INCLUDED_
38 #if _MSC_VER >= 1000
39 #pragma once
40 #endif // _MSC_VER >= 1000
42 #ifndef __AFXWIN_H__
43 #error include 'stdafx.h' before including this file for PCH
44 #endif
46 #include "resource.h" // main symbols
47 #define MaxCapPars 10
49 /////////////////////////////////////////////////////////////////////////////
50 // CCapDll:
51 // See CapDll.cpp for the implementation of this class
53 #ifdef _EXPORTING
54 #define CLASS_DECLSPEC __declspec(dllexport)
55 #else
56 #define CLASS_DECLSPEC __declspec(dllimport)
57 #endif
59 void CLASS_DECLSPEC InitCapDll(const char* INI);
61 class CLASS_DECLSPEC CCapDll
63 public:
64 CCapDll();
65 const char* GetFileName();
66 char* SetFileName(const char* fn);
67 const char* GetAdapter();
68 const char* GetPath();
69 const char* GetFilter();
70 char* SetPath(const char * p);
71 char* SetAdapter(const char* ad);
72 char* SetFilter(const char* ad);
73 int CaptureDialog(const char* Adapter,const char* P, CWnd* mw);
74 int ChooseAdapter(const char* Adapter, CWnd* mw);
75 const char* Capture(const char* file, CWnd* mw);
76 ~CCapDll();
77 private:
78 char* Path;
79 char* Adapter;
80 char* FileName;
81 char* Filter;
82 int bufdim;
83 int ncapture;
84 int snaplen;
85 int promisquous;
86 void LoadCmds();
87 CString RetrieveValue(CString keyval);
91 /////////////////////////////////////////////////////////////////////////////
93 //{{AFX_INSERT_LOCATION}}
94 // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
96 #endif // !defined(AFX_CapDll_H__03FA9206_C8EA_11D2_B729_0048540133F7__INCLUDED_)