home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / January / Fp98 / SDK / WebBot / wbtest1 / wbtest1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-18  |  518 b   |  22 lines

  1. /*
  2.  * Copyright (c) 1996 Vermeer Technologies, Inc., a wholly owned
  3.  *               subsidiary of Microsoft Corp.  All Rights Reserved
  4.  *
  5.  * File: bottest1.c
  6.  * DLL Custom WebBot Component Example
  7.  */
  8.  
  9. #include "stdio.h"
  10. #include "../webbot.h"
  11.  
  12. void WEBBOT_EXPORT Hello1_Expand(
  13.     WebBotString* retString,
  14.     WebBotDict*   botAttributes,
  15.     WebBotDict*   cgiEnvironment,
  16.     WebBotDict*   formData,
  17.     WebBotFuncs*  funcs)
  18. {
  19.     funcs->StringAppendTo(retString, "\n<b>Hello World!</b>");
  20. }
  21.  
  22.