How to create threads in silverlight native c++?

44 views Asked by At

I am trying to create thread in native C++, but it results in an error. I am trying to do it this way:

CreateThread(NULL,myfunction,NULL,0,NULL);

It shows wrong arguments error and I don't know what is wrong with it.

1

There are 1 answers

0
Přemysl Šťastný On

I think, it's really not necessary use unusual functions like this. Try to use std libraries.