Написал пробную dll для создания процесса на с++. Вызываю её в консоли шарпа - вот такая ошибка. Вот коды:
#include "stdafx.h"
#include <Windows.h>
#include <conio.h>
extern "C" __declspec(dllexport) int CallNewProccess() {
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
if (!CreateProcess(NULL, const_cast<WCHAR*>(L"cmd"), NULL, NULL, FALSE, CREATE_NEW_CONSOLE, NULL, NULL, &si, &pi)) {
return 0;
}
else
return 1;
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
class WinApiClass
{
[DllImport("DLL4.dll")]
public static extern int CallNewProccess();
}
namespace ConsoleApp50
{
class Program
{
static void Main(string[] args)
{
try
{
int flag = WinApiClass.CallNewProccess();
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.WriteLine("Press any key to continue...");
Console.ReadKey(true);
}
}
}