i mean to say. using windows dll fucntions in vc++ programs. like GetSystemInfo() function of kernel32.dll
how can i use this and many othre functions in my vc++.
plz suggest me very simple articles or tutorials.
thanks
This is a Perl forum. Do you have a Perl interpreter embedded in your C++ program? Then you can simply use the Win32::API module as discussed in this thread. If you don't have a Perl interpreter in your C++ program, I guess you will have to import the header files and just use the functions from your C++ program. But that's something people on a C++ forum know far better than we do.