Sha256: eb5298010dedf57c7d6a313b906fefed42ba7202f3efb7fc825f4645e7cd6364

Contents?: true

Size: 391 Bytes

Versions: 3

Compression:

Stored size: 391 Bytes

Contents

// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"

BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
					 )
{
	switch (ul_reason_for_call)
	{
	case DLL_PROCESS_ATTACH:
	case DLL_THREAD_ATTACH:
	case DLL_THREAD_DETACH:
	case DLL_PROCESS_DETACH:
		break;
	}
	return TRUE;
}

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
rautomation-2.0.1-x86-mingw32 ext/IAccessibleDLL/IAccessibleDLL/dllmain.cpp
rautomation-2.0.1-x64-mingw32 ext/IAccessibleDLL/IAccessibleDLL/dllmain.cpp
rdp-rautomation-0.6.3.1 ext/IAccessibleDLL/IAccessibleDLL/dllmain.cpp