update for new extension api

This commit is contained in:
Akash Mozumdar 2018-07-26 22:59:54 -07:00
parent a211b8f5ab
commit a2dbe6bd05
4 changed files with 2 additions and 6 deletions

View File

@ -9,10 +9,6 @@
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h">

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +1,8 @@
# ExampleExtension
Every time NextHooker has a sentence of text ready,
it will call ```NewSentence``` on all extensions it finds sequentially,
plugging the output of ```NewSentence``` from the previous extension into the next extension.<br>
it will call ```OnNewSentence``` on all extensions it finds sequentially,
plugging the output of ```OnNewSentence``` from the previous extension into the next extension.<br>
After the sentence has been processed by all extensions, it will be displayed.
# Notes