We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b420d17 commit 046810cCopy full SHA for 046810c
src/OSWinSubprocess/OSWSWinProcessLibrary.class.st
@@ -85,7 +85,13 @@ OSWSWinProcessLibrary >> waitForSingleObject: handle milliSeconds: ms [
85
^ self ffiCall: #( uint WaitForSingleObject (void * handle, uint ms)) module: #Kernel32
86
]
87
88
-{ #category : 'public' }
89
-OSWSWinProcessLibrary >> win32ModuleName [
+{ #category : 'accessing - platform' }
+OSWSWinProcessLibrary >> win32LibraryName [
90
^ 'msvcrt.dll'
91
92
+
93
94
+OSWSWinProcessLibrary >> win32ModuleName [
95
+ "Only kept for backward compatibility"
96
+ ^ self win32LibraryName
97
+]
0 commit comments