Windows2000/private/shell/shell32/atlcreat.cpp
2020-09-30 17:12:32 +02:00

19 lines
472 B
C++

// atlcreate.cpp : Implementation of DLL Exports.
#include "shellprv.h"
LCID g_lcidLocale = MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT);
#include <ole2.h>
#include <objbase.h>
#include "unicpp\stdafx.h"
#include "fsearch.h" // FileSearchBand
extern "C"
STDAPI CFileSearchBand_CreateInstance(LPUNKNOWN pUnkOuter, REFIID riid, void **ppunk)
{
return CComCreator< CComObject< CFileSearchBand > >::CreateInstance((LPVOID)pUnkOuter, IID_IUnknown, (LPVOID*)ppunk);
}