S
smp9737
Hello.
I'm developing a Win32 Console Application for a Smart Device (MotoQ).
All i need to do is delete a file with a known name and path. I'm
under the impression that I have to use File:elete( path ) based on
what MSDN is telling me. Thus I need to include mscorlib.dll ... I
#using this and the method cannot be found. I have tried almost
everything and am completely confused.
#using <C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll>
using namespace System;
using namespace System::IO;
#include "stdafx.h"
#include <Tlhelp32.h>
#include <windows.h>
#include <commctrl.h>
void installCab(LPTSTR cabFile);
void installCabs(LPCTSTR directory);
bool checkIfWCELOADIsRunning();
void removeInstallFiles();
void removeInstallFiles()
{
Delete(" ");
}
ERRORS:::
Error 1 error C3861: 'Delete': identifier not found Installer.cpp 64
ANY IDEAS?!?!
thanks, smp
I'm developing a Win32 Console Application for a Smart Device (MotoQ).
All i need to do is delete a file with a known name and path. I'm
under the impression that I have to use File:elete( path ) based on
what MSDN is telling me. Thus I need to include mscorlib.dll ... I
#using this and the method cannot be found. I have tried almost
everything and am completely confused.
#using <C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll>
using namespace System;
using namespace System::IO;
#include "stdafx.h"
#include <Tlhelp32.h>
#include <windows.h>
#include <commctrl.h>
void installCab(LPTSTR cabFile);
void installCabs(LPCTSTR directory);
bool checkIfWCELOADIsRunning();
void removeInstallFiles();
void removeInstallFiles()
{
Delete(" ");
}
ERRORS:::
Error 1 error C3861: 'Delete': identifier not found Installer.cpp 64
ANY IDEAS?!?!
thanks, smp