File indexing completed on 2025-01-19 06:55:04
0001 #include "kmuddyvars.h" 0002 0003 int main(void) 0004 { 0005 initVariableSocket(); 0006 setVariable("test", "this value set by LOCKTEST!"); 0007 lockVariable("test"); 0008 sleep(1000); 0009 closeVariableSocket(); 0010 return 0; 0011 } 0012