I been going through the HDK docs and was able to compile a couple examples successfully.
One such as SOP_Start.C I am able to compile and making sure it's .dll is in the right directory and with new instance of Houdini can find it under TAB menu of network window and lay it down.
However after reading the section on custom VEX functions although I can compile successfully the VEX_Ops.C file,
I cannot call the ‘sticky’ function in a point wrangle.
VEX_Ops.C [www.sidefx.com]
From hconfig I see what my $HFS path is
HFS := 'C:/PROGRA~1/SIDEEF~1/HOUDIN~1.705'
and from hconfig -ap I find the reference to vex path
HOUDINI_VEX_DSO_PATH := "@/vex" The search path for loading custom VEX functions. Default path: '@/vex' Where @ is replaced with HOUDINI_DSO_PATH Directories searched (in order) are: 1) "$HFS/houdini/dso/vex"
It appears by default the path is set to look for custom VEX functions in $HFS/houdini/dso/vex
So I put the VEX_Ops.dll file in that directory.
But when call ‘sticky’ I get an error saying it's not defined.
Help is appreciated - Thanks.