1// VisVIM.h : main header file for the VisVim DLL
2//
3
4#if !defined(AFX_VISVIM_H__AC72670B_2977_11D1_B2F3_006008040780__INCLUDED_)
5#define AFX_VISVIM_H__AC72670B_2977_11D1_B2F3_006008040780__INCLUDED_
6
7#ifndef __AFXWIN_H__
8#error include 'stdafx.h' before including this file for PCH
9#endif
10
11#include "resource.h"		// Main symbols
12
13#include <ObjModel\addguid.h>
14#include <ObjModel\appguid.h>
15#include <ObjModel\bldguid.h>
16#include <ObjModel\textguid.h>
17#include <ObjModel\dbgguid.h>
18
19//
20// Prototypes
21//
22
23HKEY GetAppKey (char* AppName);
24HKEY GetSectionKey (HKEY hAppKey, LPCTSTR Section);
25int GetRegistryInt (HKEY hSectionKey, LPCTSTR Entry, int Default);
26bool WriteRegistryInt (HKEY hSectionKey, char* Entry, int nValue);
27void ReportLastError (HRESULT Err);
28void ReportInternalError (char* Fct);
29
30//{{AFX_INSERT_LOCATION}}
31// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
32
33#endif // !defined(AFX_VISVIM_H__AC72670B_2977_11D1_B2F3_006008040780__INCLUDED)
34