Move declarations to the begining of function.

This allows it to actually compile on windows.
This commit is contained in:
Edin Kadribasic 2004-05-18 12:32:05 +00:00
parent e489d93abc
commit b1efed9dde

View File

@ -623,20 +623,20 @@ PHP_FUNCTION(pspell_config_create)
int ind;
PspellConfig *config;
#ifdef PHP_WIN32
TCHAR aspell_dir[200];
TCHAR data_dir[220];
TCHAR dict_dir[220];
HKEY hkey;
DWORD dwType,dwLen;
#endif
argc = ZEND_NUM_ARGS();
if (argc < 1 || argc > 4 || zend_get_parameters_ex(argc,&language,&spelling,&jargon,&encoding) == FAILURE) {
WRONG_PARAM_COUNT;
}
#ifdef PHP_WIN32
TCHAR aspell_dir[200];
TCHAR data_dir[220];
TCHAR dict_dir[220];
HKEY hkey;
DWORD dwType,dwLen;
#endif
config = new_pspell_config();
#ifdef PHP_WIN32