# HG changeset patch # User Herman Bloggs # Date 1043966621 0 # Node ID 59ff9d0b7b8557ba4ba6e3cbadff7a18be0efc87 # Parent b30b0a02ada009d3bfdcccd1026d293198531786 [gaim-migrate @ 4757] fopen note committer: Tailor Script diff -r b30b0a02ada0 -r 59ff9d0b7b85 PROGRAMMING_NOTES --- a/PROGRAMMING_NOTES Thu Jan 30 21:25:24 2003 +0000 +++ b/PROGRAMMING_NOTES Thu Jan 30 22:43:41 2003 +0000 @@ -12,6 +12,13 @@ - Make sure when including win32dep.h that it is the last header to be included. +- Open binary files when reading or writing with 'b' mode. + + e.g: fopen("somefile", "wb"); + + Not doing so will open files in windows using defaut translation mode. + i.e. newline -> + Paths -----