-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6840462
commit be7d0e8
Showing
6 changed files
with
31 additions
and
13 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
sylph-web/src/main/webapp/node_modules/.bin/mini-css-extract-plugin
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...-web/src/main/webapp/node_modules/react-scripts/node_modules/.bin/mini-css-extract-plugin
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
sylph-web/src/main/webapp/node_modules/react-scripts/node_modules/.bin/url-loader
This file was deleted.
Oops, something went wrong.
23 changes: 20 additions & 3 deletions
23
sylph-yarn/src/main/java/ideal/sylph/runtime/local/Kernel32.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 |
---|---|---|
@@ -1,10 +1,27 @@ | ||
/* | ||
* Copyright (C) 2018 The Sylph Authors | ||
* | ||
* 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 ideal.sylph.runtime.local; | ||
|
||
import com.sun.jna.Library; | ||
import com.sun.jna.Native; | ||
|
||
public interface Kernel32 extends Library { | ||
public interface Kernel32 | ||
extends Library | ||
{ | ||
Kernel32 INSTANCE = (Kernel32) Native.load("kernel32", Kernel32.class); | ||
long GetProcessId(Long hProcess); | ||
} | ||
|
||
long getProcessId(Long hProcess); | ||
} |
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