Welcome, Guest. Please login or register.

Author Topic: Forgive the use of windows, but I need help !  (Read 2498 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline countzero

  • Hero Member
  • *****
  • Join Date: Mar 2005
  • Posts: 1938
    • Show all replies
    • http://blog.coze.org
Re: Forgive the use of windows, but I need help !
« on: May 19, 2005, 01:57:21 PM »
http://www.newty.de/fpt/fpt.html#defi

google and you shall find

casting is casting a type to a pointer. like, you can declare the function parameter as a void pointer, then you can cast it to a specific type and use it.

int myWindozeFunction (void * groovy, int what)

if (what == 1)
int * myIntPtr = (int *) groovy;

something like this...
I believe in mt. Fuji