From 04699b61387f5fc935094258819bb0f95f0ac605 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sat, 22 Sep 2018 17:33:40 -0400 Subject: [PATCH] update extensions for 3.2.0 --- ExampleExtension/Extension.cpp | Bin 3254 -> 3204 bytes ExampleExtension/Extension.h | Bin 4242 -> 3948 bytes README.md | 9 +++++---- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ExampleExtension/Extension.cpp b/ExampleExtension/Extension.cpp index 99ac41be58740356ba3c83b6bf8a08854160c547..d36346b9430f0ada7b9398a08013f958c8efdd75 100644 GIT binary patch delta 184 zcmdlc*&?~&4D;jwW&v|ghCGHehI|Gq1_g#>Af3lh!jQ<238agGBDp|TF;F~}AqNN( zfugBEHKh#2lf7Atr4<;0f&5gUx*!Hu21f=L245hp2h^3axt1l9NgN~%G7v<941roU mIgwd-vmCn%qhv951q{)XD>)RoV}T~y0-*wf;pX)m>?{B~PbM4y delta 260 zcmZpX+$Oo<40C-hLncEpLo$OWLmopKLq3BQg91YVkj@11OBhlaih%qQAYTEfs)QjC z$S(o1^MPtXA|O@i3^@#yKwb`*mkrdD0_A~pC;-jQ2b+}$mWSw2V1U{?S(wFma}rAi zlQ~2gL<`I@Za}R?46Y0nK!Z|&hJY*t8Kwm^7HYue&up%Y;_g7{5{3Yv;(Va%L9Q+V Xx=CYlAcvx;4ni^9mztYvIoMeMxJ@;W diff --git a/ExampleExtension/Extension.h b/ExampleExtension/Extension.h index ab69a80d4c049b0a5b05357199e47a35f2f0ad52..0b6573cfccf23b5c78cc08adb1f84f48cbefd4f3 100644 GIT binary patch delta 490 zcmZ`$!AiqG6r61;8qo>{5fMsq5Gp8D5D$jv*<-0U5eaoGg_x9RgU|-QLH8@XiTw%x zK=2@V_u|E~vm0X%QkH!W-kX^>`}V>6tUqlDFGh$fNcdR9JZ$t3;|BZK!#T5yOi2-_ zXR&<$R$FZosM|Vr7>}8|NYrB`*oa8IX0H@#qDlG*QVz(7P1%*IWv{DmQ4jtPO3*i` zkQxcmr#M5yC|=-zM{B3X-lb{@N4;AMcZKEQuXS5{A;u*y#K7pdWVi@;C;p0>XR0xA z5l`Q!`^1&_9=37F_etEcw`n?E#s;w|=g_TswU$=2y4El8W}WKGa{Qu_(M!ZBlNH(Kt delta 569 zcmZ`$PfNmJ9Dd$SQpIs^p~US%i=bB#@{4t|M#pQ2mfJqWti zq0iB!Z_u-;5xN+>&yW3h{=M&4>Ct+wDyi!`))5S>Ba1#f3}M1YfLoqj;t&tGmUGpz zE|&hzSQE^U3Swvl70O1YD7IE=F4Rt`GsH5x42K>b!r0Nl4La1{hbc9ESFaM^)uFU= zCHYVdVt)II`wqr&sxUrHwB$9t)m-Giqe>qxcP7dha1QBmMwcGFR`~L*74|Cg?os<* z%!?8QXQF{<4&uHeq8BkwR(wI`>K(J2ixIhtHd)Rt z8+8BipSQnE*7wN1Pq_Er*W!EsNgAi0?I!Z1JL0dULnv@>HM^A*xC;w CD{rj; diff --git a/README.md b/README.md index 7528296..e7908f4 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,14 @@ it will call ```OnNewSentence``` on all extensions it finds sequentially, plugging the output of ```OnNewSentence``` from the previous extension into the next extension.
After the sentence has been processed by all extensions, it will be displayed. -# MiscInfo +# SentenceInfo -## The following properties are in ```MiscInfo``` -```"current select"```: always 0 unless the sentence is in the text channel currently selected by the user.
+## The following properties are in ```SentenceInfo``` +```"current select"```: always 0 unless the sentence is in the text channel selected by the user.
```"hook address"```: address the hook was inserted at. May need cast to unsigned. Console text channel is always -1.
```"process id"```: process id that the sentence is coming from.
-```"text handle"```: number that uniquely identifies the text channel the sentence is in.
+```"text handle"```: number that uniquely identifies the current text channel.
+```"text name"```: pointer to start of a wchar array of the name of the current text channel.
# Notes