diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2003-09-26 23:59:25 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2003-09-26 23:59:25 (GMT) |
commit | d845b59c2dc88ab3cdfd48319de6c0b32e2162cc (patch) | |
tree | 8e5ac9459b553fd73a171025472ca655c7d60ae1 /win/makefile.vc | |
parent | 7bda307adb52cf5b6a1227dfb4f71c66c7446cef (diff) | |
download | tk-d845b59c2dc88ab3cdfd48319de6c0b32e2162cc.zip tk-d845b59c2dc88ab3cdfd48319de6c0b32e2162cc.tar.gz tk-d845b59c2dc88ab3cdfd48319de6c0b32e2162cc.tar.bz2 |
* win/makefile.vc: Implementation of TIP #150, "Provide
* win/tkWinSend.c: 'send' command for Windows"
* win/tkWinSendCom.h:
* win/tkWinSendCom.c:
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index c8927e8..73e52fa 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.72 2003/08/25 20:35:59 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.73 2003/09/26 23:59:26 patthoyts Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -241,6 +241,7 @@ TKOBJS = \ $(TMP_DIR)\tkWinRegion.obj \ $(TMP_DIR)\tkWinScrlbr.obj \ $(TMP_DIR)\tkWinSend.obj \ + $(TMP_DIR)\tkWinSendCom.obj \ $(TMP_DIR)\tkWinWindow.obj \ $(TMP_DIR)\tkWinWm.obj \ $(TMP_DIR)\tkWinX.obj \ @@ -425,7 +426,7 @@ dlllflags = $(lflags) -dll conlflags = $(lflags) -subsystem:console guilflags = $(lflags) -subsystem:windows -baselibs = kernel32.lib advapi32.lib user32.lib +baselibs = kernel32.lib advapi32.lib user32.lib ole32.lib oleaut32.lib uuid.lib guilibs = $(baselibs) shell32.lib gdi32.lib comdlg32.lib winspool.lib imm32.lib comctl32.lib |