mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
717 B
39 lines
717 B
#ifndef SSICGI_HXX_INCLUDED
|
|
#define SSICGI_HXX_INCLUDED
|
|
|
|
#define SSI_CGI_DEF_TIMEOUT (15*60)
|
|
|
|
BYTE *
|
|
ScanForTerminator(
|
|
TCHAR * pch
|
|
);
|
|
|
|
BOOL
|
|
IsCmdExe(
|
|
const CHAR * pchPath
|
|
);
|
|
|
|
DWORD
|
|
ReadRegistryDword(
|
|
IN HKEY hkey,
|
|
IN LPSTR pszValueName,
|
|
IN DWORD dwDefaultValue
|
|
);
|
|
|
|
DWORD InitializeCGI( VOID );
|
|
VOID TerminateCGI( VOID );
|
|
|
|
BOOL
|
|
ProcessCGI(
|
|
SSI_REQUEST * pRequest,
|
|
const STR * pstrPath,
|
|
const STR * pstrURLParams,
|
|
const STR * pstrWorkingDir,
|
|
const STR * pstrCmdLine,
|
|
const STR * pstrPathInfo
|
|
);
|
|
|
|
BOOL SetupCmdLine( STR * pstrCmdLine,
|
|
const STR & strParams );
|
|
|
|
#endif
|