diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/tkWinX.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-09-24 Pat Thoyts <patthoyts@users.sourceforge.net> + + * win/tkWinX.c: Added declaration for advapi32 now that this file + uses the Reg* functions (req'd for nmake build system). + 2004-09-23 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tkTest.c diff --git a/win/tkWinX.c b/win/tkWinX.c index 83866a5..1bef5c4 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinX.c,v 1.33 2004/09/23 01:08:12 hobbs Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.34 2004/09/24 01:15:07 patthoyts Exp $ */ #include "tkWinInt.h" @@ -28,6 +28,7 @@ #include <commctrl.h> #ifdef _MSC_VER # pragma comment (lib, "comctl32.lib") +# pragma comment (lib, "advapi32.lib") #endif /* |