Skip to content

Commit 046810c

Browse files
committed
replace win32ModuleName by win32LibraryName
Fixes #7
1 parent b420d17 commit 046810c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/OSWinSubprocess/OSWSWinProcessLibrary.class.st

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,13 @@ OSWSWinProcessLibrary >> waitForSingleObject: handle milliSeconds: ms [
8585
^ self ffiCall: #( uint WaitForSingleObject (void * handle, uint ms)) module: #Kernel32
8686
]
8787

88-
{ #category : 'public' }
89-
OSWSWinProcessLibrary >> win32ModuleName [
88+
{ #category : 'accessing - platform' }
89+
OSWSWinProcessLibrary >> win32LibraryName [
9090
^ 'msvcrt.dll'
9191
]
92+
93+
{ #category : 'accessing - platform' }
94+
OSWSWinProcessLibrary >> win32ModuleName [
95+
"Only kept for backward compatibility"
96+
^ self win32LibraryName
97+
]

0 commit comments

Comments
 (0)