Click here to Skip to main content
15,918,275 members
Home / Discussions / C#
   

C#

 
GeneralRe: Windows Service, FileSystemWatcher + Polling Pin
#realJSOP3-Mar-10 3:54
professional#realJSOP3-Mar-10 3:54 
QuestionOUTLFLTR.DLL library - need an answer Pin
chiky_ancutza2-Mar-10 5:20
chiky_ancutza2-Mar-10 5:20 
AnswerRe: OUTLFLTR.DLL library - need an answer Pin
Dan Mos2-Mar-10 5:24
Dan Mos2-Mar-10 5:24 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza2-Mar-10 5:28
chiky_ancutza2-Mar-10 5:28 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Dan Mos2-Mar-10 5:38
Dan Mos2-Mar-10 5:38 
AnswerRe: OUTLFLTR.DLL library - need an answer Pin
Luc Pattyn2-Mar-10 5:29
sitebuilderLuc Pattyn2-Mar-10 5:29 
AnswerRe: OUTLFLTR.DLL library - need an answer Pin
Covean2-Mar-10 5:33
Covean2-Mar-10 5:33 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza2-Mar-10 5:45
chiky_ancutza2-Mar-10 5:45 
For example i have to use this function which contains also md5 decryption:

void ms_md5(
unsigned char* key,
unsigned char* data,
int length,
unsigned char *digest
)
{
MD5_CTX context;
MD5Init(&context);
MD5Update(&context,key,16);
MD5Update(&context,data,length);
MD5Final(digest, &context);
}

it's enough to
[DllImport("OUTLFLTR.DLL", CharSet = CharSet.Unicode)]
static extern void ms_md5(char* a,char* b,int l, char *d);

i am not sure how can i transmit the last parameter and after how i use in my program, like an usual procedure?

thanks a lot,
Anca
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean2-Mar-10 5:58
Covean2-Mar-10 5:58 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza2-Mar-10 7:27
chiky_ancutza2-Mar-10 7:27 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean2-Mar-10 20:33
Covean2-Mar-10 20:33 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza3-Mar-10 2:40
chiky_ancutza3-Mar-10 2:40 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean3-Mar-10 3:02
Covean3-Mar-10 3:02 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza3-Mar-10 5:35
chiky_ancutza3-Mar-10 5:35 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean4-Mar-10 0:05
Covean4-Mar-10 0:05 
QuestionQuickTime Audio peak detection Pin
survcopt2-Mar-10 4:57
survcopt2-Mar-10 4:57 
Questionnamespace - automatically created, now not recognized Pin
lukeer2-Mar-10 4:44
lukeer2-Mar-10 4:44 
AnswerRe: namespace - automatically created, now not recognized Pin
Dan Mos2-Mar-10 5:27
Dan Mos2-Mar-10 5:27 
AnswerRe: namespace - automatically created, now not recognized Pin
Luc Pattyn2-Mar-10 5:35
sitebuilderLuc Pattyn2-Mar-10 5:35 
GeneralRe: namespace - automatically created, now not recognized Pin
Som Shekhar2-Mar-10 7:46
Som Shekhar2-Mar-10 7:46 
AnswerRe: namespace - automatically created, now not recognized Pin
Paulo Zemek2-Mar-10 10:05
Paulo Zemek2-Mar-10 10:05 
GeneralRe: namespace - automatically created, now not recognized Pin
lukeer2-Mar-10 20:37
lukeer2-Mar-10 20:37 
GeneralRe: namespace - automatically created, now not recognized Pin
Paulo Zemek3-Mar-10 1:21
Paulo Zemek3-Mar-10 1:21 
GeneralRe: namespace - automatically created, now not recognized Pin
lukeer3-Mar-10 20:45
lukeer3-Mar-10 20:45 
QuestionHow do you check the validity of a file type? Pin
sunlord_clave2-Mar-10 3:50
sunlord_clave2-Mar-10 3:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.