diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-11-15 11:48:05 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-11-15 11:48:05 (GMT) |
| commit | 120696c0b47504de8817e50c047a8f959263d4e1 (patch) | |
| tree | d44984046a6266997c88557bb2563ad347cd9562 /generic/tclPlatDecls.h | |
| parent | 1a37966769e749dd9018e284391fe2b856c0c487 (diff) | |
| download | tcl-120696c0b47504de8817e50c047a8f959263d4e1.zip tcl-120696c0b47504de8817e50c047a8f959263d4e1.tar.gz tcl-120696c0b47504de8817e50c047a8f959263d4e1.tar.bz2 | |
Simplification: don't declare struct types that are never used.
Diffstat (limited to 'generic/tclPlatDecls.h')
| -rw-r--r-- | generic/tclPlatDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclPlatDecls.h b/generic/tclPlatDecls.h index 48ad390..e9b92fe 100644 --- a/generic/tclPlatDecls.h +++ b/generic/tclPlatDecls.h @@ -69,7 +69,7 @@ EXTERN int Tcl_MacOSXOpenVersionedBundleResources( typedef struct TclPlatStubs { int magic; - const struct TclPlatStubHooks *hooks; + void *hooks; #if defined(__WIN32__) || defined(__CYGWIN__) /* WIN */ TCHAR * (*tcl_WinUtfToTChar) (const char *str, int len, Tcl_DString *dsPtr); /* 0 */ |
