Subj : link error To : comp.programming From : Dumitru Pletosu Date : Sat Jul 09 2005 10:31 am I compiled my program (written in C, in MSVS 7.1 ) with: #pragma comment(linker,"/NODEFAULTLIB") I did re-write the equivalents of Common Runtime Library functions (malloc, free, fopen, etc ) and everything runs smoothly. This is until I try to write a function that uses WIN32_FIND_DATA type. This time I get such and error at link time: ----------------------- CIL library( CIL module) : error LNK2001: unresolved external symbol ___security_cookie CIL library( CIL module) : error LNK2001: unresolved external symbol @__security_check_cookie@4 ------------------------ Is there any solution to this issue ? Thanks. .