metaforce/hecl/include/HECL/winsupport.hpp

15 lines
471 B
C++
Raw Normal View History

2015-08-31 03:36:24 +00:00
#ifndef _HECL_WINSUPPORT_H_
#define _HECL_WINSUPPORT_H_
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include "windows.h"
void* memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen);
HRESULT CreateShellLink(LPCWSTR lpszPathObj, LPCWSTR lpszPathLink, LPCWSTR lpszDesc);
HRESULT ResolveShellLink(LPCWSTR lpszLinkFile, LPWSTR lpszPath, int iPathBufferSize);
2015-10-06 01:49:23 +00:00
bool TestShellLink(LPCWSTR lpszLinkFile);
2015-08-31 03:36:24 +00:00
#endif // _HECL_WINSUPPORT_H_