view src/os_w32dll.c @ 24232:3058ed6db36f v8.2.2657

patch 8.2.2657: Vim9: error message for declaring variable in for loop Commit: https://github.com/vim/vim/commit/522eefd9a247c574a51bfe9bf73467a8dc3bac42 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 26 18:49:22 2021 +0100 patch 8.2.2657: Vim9: error message for declaring variable in for loop Problem: Vim9: error message for declaring variable in for loop. Solution: Clear variables when entering block again. (closes https://github.com/vim/vim/issues/8012)
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Mar 2021 19:00:04 +0100
parents 7ae2396cef62
children
line wrap: on
line source

/* vi:set ts=8 sts=4 sw=4 noet:
 *
 * VIM - Vi IMproved		by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 * See README.txt for an overview of the Vim source code.
 */
/*
 * Windows GUI: main program (DLL) entry point:
 *
 * Ron Aaron <ronaharon@yahoo.com> wrote this and the DLL support code.
 * Adapted by Ken Takata.
 */
#ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>

void SaveInst(HINSTANCE hInst);

BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
    if (fdwReason == DLL_PROCESS_ATTACH)
	SaveInst(hinstDLL);
    return TRUE;
}