使用win32api,我希望以下程序创建两个进程并创建一个文件映射。 (使用C ++)

我不知道我应该在Handle CreateFileMapping(...写什么。
我已经尝试过:

PROCCESS_INFORMATION hfile.


此外,第一个参数应该是INVALID_HANDLE_VALUE,但是我不知道要写什么作为第一个参数写入MapViewOfFile

第一个程序中的代码:(我没有编写2.&3。因为即使第一个也不起作用)

//Initial process creates proccess 2 and 3

#include <iostream>
#include <windows.h>
#include <string>

using namespace std;

void main()
{

bool ret;
bool retwait;
bool bhandleclose;

STARTUPINFO startupinfo;
GetStartupInfo (&startupinfo);

PROCESS_INFORMATION pro2info;
PROCESS_INFORMATION pro3info;

//create proccess 2
wchar_t wcsCommandLine[] = L"D:\\betriebssystemePRA2pro2.exe";


 ret = CreateProcess(NULL, wcsCommandLine, NULL, NULL, false, CREATE_NEW_CONSOLE, NULL,
  NULL, &startupinfo, &pro2info);


 if (ret==false){
  cout<<"Prozess konnte nicht erzeugt werden. Fehler:"<<GetLastError();
  ExitProcess(0);
 }

 //***************


 //create process3

wchar_t wcs2CommandLine[] = L"D:\\betriebssystemePRA2pro3.exe";


 ret = CreateProcess(NULL, wcs2CommandLine, NULL, NULL, false, CREATE_NEW_CONSOLE, NULL,
  NULL, &startupinfo, &pro3info);


 if (ret==false){
  cout<<"Prozess konnte nicht erzeugt werden. Fehler:"<<GetLastError();
  ExitProcess(0);
 }



 //***************



 //create mapping object

 // program2:




 PROCESS_INFORMATION hfile;





  CreateFileMapping(  //erzeugt filemapping obj  returned ein handle
  INVALID_HANDLE_VALUE, //mit dem handle-->kein seperates file nötig
  NULL,
  PAGE_READWRITE,  //rechte (lesen&schreiben)
  0,
  5,
  L"myfile");  //systemweit bekannter name


    LPVOID mappointer = MapViewOfFile( //virtuelle speicherraum, return :zeiger, der auf den bereich zeigt
  INVALID_HANDLE_VALUE, //handle des filemappingobj.
  FILE_MAP_ALL_ACCESS,
  0,
  0,
  100);



    //wait
    cout<<"beliebige Taste druecken"<<endl;
    cin.get();


//close


 bool unmap;

 unmap = UnmapViewOfFile (mappointer);

 if (unmap==true)
  cout<<"Unmap erfolgreich"<<endl;
 else
  cout<<"Unmap nicht erfolgreich"<<endl;


 bhandleclose=CloseHandle (INVALID_HANDLE_VALUE);
 cout<<bhandleclose<<endl;

 bhandleclose=CloseHandle (pro2info.hProcess);
 bhandleclose=CloseHandle (pro3info.hProcess);


 ExitProcess(0);


}

最佳答案

MapViewOfFile采用CreateFileMapping返回的句柄:

HANDLE hFileMapping = CreateFileMapping(...);
LPVOID lpBaseAddress = MapViewOfFile(hFileMapping, ...);

09-13 04:21