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.
21 lines
262 B
21 lines
262 B
#ifndef _CERHELP_H
|
|
#define HELP_TOPIC_TABLE_OF_CONTENTS 1
|
|
|
|
enum
|
|
{
|
|
HELP_SUCCESS,
|
|
HELP_NO_SUCH_PAGE,
|
|
HELP_FAILURE
|
|
};
|
|
|
|
void
|
|
MakeHelpFileName();
|
|
|
|
ULONG
|
|
OpenHelpTopic(ULONG PageConstant);
|
|
|
|
ULONG
|
|
OpenHelpIndex(PCSTR IndexText);
|
|
|
|
|
|
#endif
|