Posts by Jean Vitor • 141 points
2 posts
-
4
votes3
answers747
viewsA: Is malloc typecast recommended?
It is not really recommended to perform Typecast, at least in C. The malloc return is in its essence a pointer to void (void*), and is then implicitly converted to another type of pointer. As…
-
0
votes1
answer235
viewsA: How to initialize webcam in a Unity3d application?
Often an external executable (I imagine this is your case since there was an export) does not understand a reference to an API after it has been compiled. A simple solution is to put in the folder…