File indexing completed on 2024-03-24 04:05:53

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