You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "testdll.h"
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
int main()
|
|
{
|
|
|
|
int i =0;
|
|
i = TestFun(NULL);
|
|
|
|
printf("tehe test is %d\n",i);
|
|
|
|
while(true)
|
|
{
|
|
sleep(10);
|
|
}
|
|
|
|
return 0;
|
|
} |