24 lines
496 B
C
24 lines
496 B
C
|
|
/* TRACE32 Remote API */
|
|
/* Copyright (c) 1998-2020 Lauterbach GmbH */
|
|
/* All rights reserved */
|
|
/* */
|
|
/* DLL main module */
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#if (_MANAGED == 1)||(_M_CEE == 1)
|
|
#pragma unmanaged
|
|
#endif
|
|
|
|
__declspec(dllexport) int WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
#endif
|
|
|