Ticket #6827: 6827-deletefile.patch

File 6827-deletefile.patch, 406 bytes (added by Jeff Lu <jll544@…>, 15 years ago)
  • libs/libmythdb/compat.h

     
    253253    #define lseek64(f,o,w) lseek(f,o,w)
    254254#endif
    255255
     256// Win32 DeleteFile macro causes namespace conflicts, so undefine it.
     257#ifdef DeleteFile
     258#undef DeleteFile
     259#endif
     260
    256261#endif // __COMPAT_H__