Stop importing msxml.dll when it's not needed anyway, and a string literal was not marked with _T() when it should.

Originally committed to SVN as r1985.
This commit is contained in:
Niels Martin Hansen 2008-03-08 23:44:51 +00:00
parent 79b82b9167
commit c6a1b9649b
2 changed files with 1 additions and 2 deletions

View File

@ -102,7 +102,7 @@ void GetSubFileNames(CString fn, CAtlArray<CString>& paths, CAtlArray<SubFile>&
bool fEmpty = true;
if((hFile = FindFirstFile(path + title + "*", &wfd)) != INVALID_HANDLE_VALUE)
if((hFile = FindFirstFile(path + title + _T("*"), &wfd)) != INVALID_HANDLE_VALUE)
{
do
{

View File

@ -39,5 +39,4 @@
// TODO: reference additional headers your program requires here
#include <streams.h>
#import "msxml.dll"
#include "..\DSUtil\DSUtil.h"