[gaim-migrate @ 4272]

Wed, 11 Dec 2002 14:55:45 +0000

author
Herman Bloggs <herman@bluedigits.com>
date
Wed, 11 Dec 2002 14:55:45 +0000
changeset 4062
b397c19fe466
parent 4061
0629287b4329
child 4063
6dd6e728a70f

[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
 ----------------
 

mercurial