X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8241721975a1a0dbaabc0ecc8aa0a0ce71a8da24..e8739575c52136bc19336b6e676f5c237a203a98:/include/wx/wxchar.h diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 139f540611..cf639c0437 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -362,7 +362,12 @@ #define wxRename wxMSLU__trename #else #ifdef __WXWINCE__ - #define wxRemove DeleteFile + /* carefully: wxRemove() must return 0 on success while DeleteFile() + returns 0 on error, so don't just define one as the other */ + inline int wxRemove(const wxChar *path) + { + return ::DeleteFile(path) == 0; + } #else #define wxRemove _tremove #define wxRename _trename