Click here to Skip to main content
15,891,905 members

Comments by satendra K (Top 3 by date)

satendra K 14-Aug-12 13:33pm View    
_setmaxstdio(1000); I tried this api,and it is returning success i.e. it is able to increase the limit. i cross checked using _getmaxstdio(). but actually i am trying to open files using "fopen". when fopen is trying to open more than 512 files fopen is failing.
In some portals i have read that _setmaxstdio is not working in win7.Could you please suggest me other way. i am using c/c++ environment.
satendra K 5-Jul-12 4:36am View    
I got the solution:

Need to create the DLL as a export driver, export one function of the DLL to the driver and return the function pointers in that function call from the driver, which needs to call from the DLL.
I have experimented this and its working fine.

BR
Satendra
satendra K 20-Jun-12 5:49am View    
Actually I want to load plugin DLLs(MP3,g729 and different codec), since driver(application) can call any codec at run time with same interface functions having in all dlls, so its must that first it load particular dll and then call the function.