home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1996 Vermeer Technologies, Inc., a wholly owned
- * subsidiary of Microsoft Corp. All Rights Reserved
- *
- * File: bottest1.c
- * DLL Custom WebBot Component Example
- */
-
- #include "stdio.h"
- #include "../webbot.h"
-
- void WEBBOT_EXPORT Hello1_Expand(
- WebBotString* retString,
- WebBotDict* botAttributes,
- WebBotDict* cgiEnvironment,
- WebBotDict* formData,
- WebBotFuncs* funcs)
- {
- funcs->StringAppendTo(retString, "\n<b>Hello World!</b>");
- }
-
-