diff options
author | antirez <antirez> | 2005-03-05 12:22:35 +0000 |
---|---|---|
committer | antirez <antirez> | 2005-03-05 12:22:35 +0000 |
commit | f98fbeebe0d54c010cc692edcbd9d3c360304e79 (patch) | |
tree | 4d0f86f40d8d73f1c21f5ea302f20036a7243147 /jim-win32.c | |
parent | f97a5a2903b3fbadb0dc0b10143bcf6200d6c937 (diff) | |
download | jimtcl-f98fbeebe0d54c010cc692edcbd9d3c360304e79.zip jimtcl-f98fbeebe0d54c010cc692edcbd9d3c360304e79.tar.gz jimtcl-f98fbeebe0d54c010cc692edcbd9d3c360304e79.tar.bz2 |
delProc callback added to Jim_CreateCommand().
Core commands handling updated to respect the new sematic.
Diffstat (limited to 'jim-win32.c')
-rw-r--r-- | jim-win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jim-win32.c b/jim-win32.c index 4080b86..bee89f9 100644 --- a/jim-win32.c +++ b/jim-win32.c @@ -2,7 +2,7 @@ * * Copyright (C) 2005 Pat Thoyts <patthoyts@users.sourceforge.net> * - * $Id: jim-win32.c,v 1.16 2005/03/04 15:37:54 antirez Exp $ + * $Id: jim-win32.c,v 1.17 2005/03/05 12:22:35 antirez Exp $ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -479,7 +479,7 @@ Jim_OnLoad(Jim_Interp *interp) Jim_InitExtension(interp, "1.0"); #define CMD(name) \ - Jim_CreateCommand(interp, "win32." #name , Win32_ ## name , NULL) + Jim_CreateCommand(interp, "win32." #name , Win32_ ## name , NULL, NULL) CMD(ShellExecute); CMD(FindWindow); |