blob: d8b6960fde5f83afc8c9b123680e78e3a36fcd3b (
plain)
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
|
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
#include <commctrl.h>
#include <cassert>
#include <algorithm>
#include <vector>
#define __NO_CMPLUGIN_NEEDED
#include <newpluginapi.h>
#include <m_clistint.h>
#include <m_skin.h>
#include <m_database.h>
#include <m_ignore.h>
#include <m_options.h>
#include <m_protosvc.h>
#include <m_langpack.h>
#include <m_clc.h>
#include <m_fontservice.h>
#include <win2k.h>
#define MODULENAME "TooltipNotify"
#include "version.h"
#include "TooltipNotify.h"
#include "DbHelpers.h"
#include "Tooltip.h"
#include "Settings.h"
#include "resource.h"
#include "Utils.h"
extern HINSTANCE g_hInstDLL;
|