You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/src/processing/app/platform/WindowsPlatform.java
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@
30
30
importcom.sun.jna.Native;
31
31
importcom.sun.jna.platform.win32.Kernel32Util;
32
32
importcom.sun.jna.platform.win32.Shell32;
33
+
importcom.sun.jna.platform.win32.Shell32Util;
33
34
importcom.sun.jna.platform.win32.ShlObj;
34
35
importcom.sun.jna.platform.win32.WinDef;
35
36
importcom.sun.jna.platform.win32.WinError;
@@ -267,7 +268,21 @@ public File getSettingsFolder() throws Exception {
267
268
}
268
269
269
270
271
+
/*
272
+
What's happening internally with JNA https://github.com/java-native-access/jna/blob/master/contrib/platform/src/com/sun/jna/platform/win32/Shell32.java
273
+
274
+
Some goodies here: https://github.com/java-native-access/jna/blob/master/contrib/platform/src/com/sun/jna/platform/win32/Shell32Util.java
0 commit comments