aboutsummaryrefslogtreecommitdiff
path: root/jim-win32com.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-02 17:05:04 +0000
committerantirez <antirez>2005-03-02 17:05:04 +0000
commita6694dabfd53401074f8d9ead211f2981a4c112a (patch)
tree033ab9044ba95f6df2be7a5c1306a17167eb94ef /jim-win32com.c
parentc4253cf2548af2603141befac83d1a9e7998eafa (diff)
downloadjimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.zip
jimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.tar.gz
jimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.tar.bz2
removed JIM_EXTENSION define from extensions. Is no longer
useful because only the core has to defile __JIM_CORE__. Added ctype.h in jim-win32com.c.
Diffstat (limited to 'jim-win32com.c')
-rw-r--r--jim-win32com.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim-win32com.c b/jim-win32com.c
index 3576b64..3bab6e8 100644
--- a/jim-win32com.c
+++ b/jim-win32com.c
@@ -17,15 +17,15 @@
#define STRICT
#define WIN32_LEAN_AND_MEAN
+#include <stdio.h>
#include <windows.h>
#include <ole2.h>
#include <tchar.h>
#include <assert.h>
#include <stdarg.h>
+#include <ctype.h>
-#define JIM_EXTENSION
#include "jim.h"
-#include <stdio.h>
#if _MSC_VER >= 1000
#pragma comment(lib, "shell32")