Mercurial > pidgin
changeset 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 | 890b4f1318df |
children | f8090a166e57 |
files | PROGRAMMING_NOTES |
diffstat | 1 files changed, 12 insertions(+), 0 deletions(-) [+] |
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 ----------------