Mercurial > pidgin.yaz
diff PROGRAMMING_NOTES @ 4062:e074172f4a41
[gaim-migrate @ 4272]
note on gaim dirs
committer: Tailor Script <tailor@pidgin.im>
| author | Herman Bloggs <hermanator12002@yahoo.com> |
|---|---|
| date | Wed, 11 Dec 2002 14:55:45 +0000 |
| parents | e3a8baffcc24 |
| children | 59ff9d0b7b85 |
line wrap: on
line diff
--- a/PROGRAMMING_NOTES Wed Dec 11 14:44:10 2002 +0000 +++ b/PROGRAMMING_NOTES Wed Dec 11 14:55:45 2002 +0000 @@ -12,6 +12,18 @@ - Make sure when including win32dep.h that it is the last header to be included. +Paths +----- + +- DATADIR, LOCALEDIR & LIBDIR are defined in wingaim as functions. + Doing the following will therefore break the windows build: + + printf("File in DATADIR is: %s\n", DATADIR G_DIR_SEPARATOR_S "pic.png"); + + it should be: + + printf("File in DATADIR is: %s%s%s\n", DATADIR, G_DIR_SEPARATOR_S, "pic.png"); + PLUGINS & PROTOS ----------------
