Replies: 2 comments
-
It turned out https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/open?view=msvc-170 |
Beta Was this translation helpful? Give feedback.
-
Ok, open() is a system function... however special handling was required on Android... calling into Java.... so dw_file_open() is implemented to call into Java on Android and on all other platforms it calls the CRT function open(). If I remember correctly, just calling open() on Android used the Linux open() which did not have permissions to access the files, so they always failed. |
Beta Was this translation helpful? Give feedback.
-
I don't understand this piece of code on
dw.h
, please elaborate more @dbsoftBeta Was this translation helpful? Give feedback.
All reactions