Skip to content

Commit 91b65d7

Browse files
committed
Test binaries built against Windows SDK 10.0.26100.3624
1 parent 6517c9e commit 91b65d7

File tree

9 files changed

+5010
-4984
lines changed

9 files changed

+5010
-4984
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:7601b2f4176afa1af582aa71009d6c1ddf09887c388cd8818a2d46ca06be0999
3-
size 121960
2+
oid sha256:302d7c4dcd445ec3a1f5d7ac4d1f2ae9ab8c08e32a48b81f61133d19c4c749fb
3+
size 104448
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:199d246194fdcac29bc7078c8a0e3711cc0b3b0337a15ba85d3427c7e230821e
3-
size 170600
2+
oid sha256:5ebca9990ac7ffa311cf2fec23a9b606e6c8cb6f6a1e2f7bbbcc862c69fc1152
3+
size 154112
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:387741e36f5d3c1897884fdc2b383a9b443c86d455f601b091633bf5cc71cb5f
3-
size 125544
2+
oid sha256:141c13322991fffc7ce5e370515a1731950bd2fd5095b94f9d548ab9e5a79106
3+
size 108032
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:442a181c7a50691f09f0bf45ec8946ca64ee0adcda383ef07210bb705b9340f5
3-
size 792680
2+
oid sha256:198748b27b360dce733c503b070622381012e718e90c9d3bdeda88841b242311
3+
size 794624

bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,22 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(DeleteEnhMetaFile)
12271227
}
12281228
#endif
12291229

1230+
#ifndef NO_DeleteFile2W
1231+
JNIEXPORT jboolean JNICALL OS_NATIVE(DeleteFile2W)
1232+
(JNIEnv *env, jclass that, jcharArray arg0, jint arg1)
1233+
{
1234+
jchar *lparg0=NULL;
1235+
jboolean rc = 0;
1236+
OS_NATIVE_ENTER(env, that, DeleteFile2W_FUNC);
1237+
if (arg0) if ((lparg0 = (*env)->GetCharArrayElements(env, arg0, NULL)) == NULL) goto fail;
1238+
rc = (jboolean)DeleteFile2W((LPCWSTR )lparg0, (DWORD)arg1);
1239+
fail:
1240+
if (arg0 && lparg0) (*env)->ReleaseCharArrayElements(env, arg0, lparg0, 0);
1241+
OS_NATIVE_EXIT(env, that, DeleteFile2W_FUNC);
1242+
return rc;
1243+
}
1244+
#endif
1245+
12301246
#ifndef NO_DeleteMenu
12311247
JNIEXPORT jboolean JNICALL OS_NATIVE(DeleteMenu)
12321248
(JNIEnv *env, jclass that, jlong arg0, jint arg1, jint arg2)

bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#include <msctf.h>
4343
#include <intsafe.h>
4444
#include <dwmapi.h>
45+
#include <fileapi.h>
4546

4647
/* Restore warnings */
4748
#pragma warning(pop)

0 commit comments

Comments
 (0)