1
0
forked from aniani/vim

updated for version 7.0f

This commit is contained in:
Bram Moolenaar
2006-04-24 19:47:27 +00:00
parent 4a85b41560
commit f9393ef5ef
179 changed files with 1203 additions and 741 deletions

View File

@@ -15,6 +15,6 @@ REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Vim\Gvim]
"path"="gvim.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.0e]
"DisplayName"="Vim 7.0e: Edit with Vim popup menu entry"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.0f]
"DisplayName"="Vim 7.0f: Edit with Vim popup menu entry"
"UninstallString"="uninstal.exe"

View File

@@ -28,7 +28,7 @@
//--------------------------------------------------------------
#ifndef STRICT
#define STRICT
# define STRICT
#endif
#define INC_OLE2 // WIN32, get ole2 from windows.h
@@ -45,8 +45,8 @@
/* Accommodate old versions of VC that don't have a modern Platform SDK */
#if _MSC_VER < 1300
#undef UINT_PTR
#define UINT_PTR UINT
# undef UINT_PTR
# define UINT_PTR UINT
#endif
#define ResultFromShort(i) ResultFromScode(MAKE_SCODE(SEVERITY_SUCCESS, 0, (USHORT)(i)))