CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/passivex/PassiveXLib.h
Views: 11766
1
/*
2
* This file is part of the Metasploit Exploit Framework
3
* and is subject to the same licenses and copyrights as
4
* the rest of this package.
5
*/
6
7
#ifndef _PASSIVEXLIB_H
8
#define _PASSIVEXLIB_H
9
10
#define _WIN32_WINNT 0x0400
11
#define _ATL_APARTMENT_THREADED
12
13
#include <stdlib.h>
14
#include <stdio.h>
15
#include <windows.h>
16
#include <wininet.h>
17
#include <time.h>
18
19
#include <atlbase.h>
20
21
extern CComModule _Module;
22
23
#include <atlcom.h>
24
#include <atlctl.h>
25
26
#include "resource.h"
27
#include "PassiveX.h"
28
#include "CPassiveX.h"
29
30
#endif
31
32