WindowsXP/shell/drts/shdrt-shortcuts/shdrt-shortcuts.cpp
2025-04-27 07:49:33 -04:00

22 lines
306 B
C++

#include "stdafx.h"
#include <shelldrt.h>
//
// DLL Entry Point
//
extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
return TRUE;
}
// ListTestProcs
//
// Describes the tests provided by the dll
DWORD CALLBACK ListTestProcs()
{
return 0;
}