-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GP-4612: Implement Windows Job control
- Loading branch information
1 parent
587307e
commit b669837
Showing
3 changed files
with
52 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
Ghidra/Framework/Pty/src/main/java/ghidra/pty/windows/jna/JobApiNative.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* ### | ||
* IP: GHIDRA | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package ghidra.pty.windows.jna; | ||
|
||
import com.sun.jna.Native; | ||
import com.sun.jna.WString; | ||
import com.sun.jna.platform.win32.WinDef.BOOL; | ||
import com.sun.jna.platform.win32.WinNT.HANDLE; | ||
import com.sun.jna.win32.StdCallLibrary; | ||
|
||
import ghidra.pty.windows.jna.ConsoleApiNative.SECURITY_ATTRIBUTES; | ||
|
||
public interface JobApiNative extends StdCallLibrary { | ||
JobApiNative INSTANCE = Native.load("kernel32.dll", JobApiNative.class); | ||
|
||
HANDLE CreateJobObjectW(SECURITY_ATTRIBUTES.ByReference lpJobAttributes, WString lpName); | ||
|
||
BOOL AssignProcessToJobObject(HANDLE hJob, HANDLE hProcess); | ||
|
||
BOOL TerminateJobObject(HANDLE hJob, int uExitCode); | ||
} |