Registriert seit: 16. Apr 2007
2.325 Beiträge
Turbo Delphi für Win32
|
Re: Maus sperren während Tastatureingabe
18. Nov 2008, 20:48
Kein Thema.
Delphi-Quellcode:
//Anwendung
hMapping := CreateFileMapping(INVALID_HANDLE_VALUE, nil, PAGE_READWRITE, 0, 4, ' The mapping of the black drake');
pView := MapViewOfFile(hMapping, FILE_MAP_WRITE, 0, 0, 0);
PCardinal(pView)^ := Handle;
//Aufräumen bei Programmende
UnmapViewOfFile(pView);
CloseHandle(hMapping);
//In der DLL
hMapping := OpenFileMapping(FILE_MAP_ALL_ACCESS, False, ' THe mapping of the black drake');
pView := MapViewOfFile(hMapping, FILE_MAP_READ, 0, 0, 0);
TargetHandle := PCardinal(pView)^;
//Aufräumarbeiten bei DLL_PROCESS_DETACH
UnmapViewOfFile(pView);
CloseHandle(hMapping);
Wer erweist der Welt einen Dienst und findet ein gutes Synonym für "Pointer"?
"An interface pointer is a pointer to a pointer. This pointer points to an array of pointers, each of which points to an interface function."
|
|
Zitat
|