File tree Expand file tree Collapse file tree 2 files changed +24
-25
lines changed Expand file tree Collapse file tree 2 files changed +24
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,6 +9,30 @@ WinPlatform >> hostArchitecture [
9
9
^ processorArch
10
10
]
11
11
12
+ { #category : #' *PharoLauncher-Core' }
13
+ WinPlatform >> privShellExecute: lpOperation file: lpFile parameters: lpParameters directory: lpDirectory show: nShowCmd [
14
+
15
+ ^ self ffiCall: #(
16
+ FFIConstantHandle ShellExecuteA(
17
+ 0,
18
+ char* lpOperation,
19
+ char* lpFile,
20
+ char* lpParameters,
21
+ char* lpDirectory,
22
+ int nShowCmd) ) module: #shell32
23
+
24
+
25
+ ]
26
+
27
+ { #category : #' *PharoLauncher-Core' }
28
+ WinPlatform >> privShellExplore: folder [
29
+ "
30
+ self privShellExplore: 'c:\'
31
+ "
32
+
33
+ ^ self privShellExecute: ' explore' file: folder parameters: ' ' directory: ' ' show: 5 " SW_SHOW"
34
+ ]
35
+
12
36
{ #category : #' *PharoLauncher-Core' }
13
37
WinPlatform >> uname [
14
38
^ PhLVmProvider osWindows
You can’t perform that action at this time.
0 commit comments