Click here to Skip to main content
15,912,072 members

Comments by Dhawal Arora (Top 10 by date)

Dhawal Arora 7-May-14 1:22am View    
The file format was rar..and 7zDec.exe was unable to list the archive files failing with error 17. Also, i just want to read the content of text files inside archive (rar/zip) For e.g I have Archive C:\\Test.rar and Test.rar contains filesam.txt , so my requirement is to read the content of filesam.txt directly ,I dont want to extract those files.
Dhawal Arora 31-Oct-13 4:59am View    
I solved the compiler error,actually i need to give project dependencies for that i didnt gave previously,"Now i am not able to get definition of optional function in my application first i am declaring pointer in my application : APR_OPTIONAL_FN_TYPE(abc) *pfn;

than retrieving it : pfn = APR_RETRIEVE_OPTIONAL_FN(abc);
pfn();

abc is returning NULL pointer as when right click on (abc) than it is unable to show its defintion,I have statically linked my mod_Agent.lib,but still not getting its definition.
kindly help
Dhawal Arora 28-Oct-13 7:08am View    
i loaded dll into dependencywalker it is loading the export variable correctly, i am writing char ** ReturnArr; outside the void function(),but unable to use in my application
Dhawal Arora 28-Oct-13 6:50am View    
@Stefan_Lang in A.c i have defined ReturnArr = NULL;

but i want to access that variable in my Application.c and want to print the reasult inside it which i am in A.c(my dll file),but in Application.c it is giving me error

Error 1 error LNK2001: unresolved external symbol "__declspec(dllimport) char ** ReturnArr" (__imp_?ReturnArr@@3PAPADA)"

Error 2 fatal error LNK1120: 1 unresolved ##externals
Dhawal Arora 28-Oct-13 6:44am View    
well agent.c is removed,Now it is giving me the previous 2 errors only,i defined Returnarr in A.c as NULL,but in Application .c i am Getting the Previous two errors only