Wed, 11 Dec 2002 14:55:45 +0000
[gaim-migrate @ 4272]
note on gaim dirs
| PROGRAMMING_NOTES | file | annotate | diff | comparison | revisions |
--- 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 ----------------