try adding following line to fsoc_main.cpp and execute make again
#include <string.h>
Considering warnings and errors given by compiler I don't have much confidence in code quality tho
Um, you need to terminate program properly by calling exit system call.
Use same 3 lines at end as in your second example.
What are you trying to achieve actually?
I found this, might help (never tried tho), so that you don't have to deal with everything from scratch :)
http://webscripts.softpedia.com/script/Development-Scripts-js/C-C-Library/wsdlpull-45545.html
From client's side Web service is just a HTTP request&response with bloated encoding of parameters and results.
You need http client, xml writer/reader, soap envelope & bit of good old socket mess (and of course specs of web service - wsdl file).
(network spying on HTTP port also helps -...
That doesn't work, but:
wprintf(L"'%4S'",L"€");
outputs:
' EUR'
:D
Probably locales are not set properly. But still, why € symbol is output correctly with printf then ?
Is this proper behaviour of printf family functions:
printf("'%4s'","€");
output:
' €'
Shouldn't output be ' €' ? It seems as if all bytes (3 for euro symbol) were counted as visible field width.
Thanks for answer, but I already tried all those 3, but these do not do what I want. jpnevulator and ttylog are just end applications that read/write from serial port ,they are not really spies. And Snooper is not usable for me, cause I only have one port.
How could I proxy IO data (or even control data) from one to another device transparently?
I need to spy traffic on serial port:
linux application <-> proxy device (writes all IO data to file besides proxying) <-> serial device (/dev/ttyS0)
I searched on inet, found nothing like this. What...
Google is your friend:
http://www.omninerd.com/articles/PC_Bootstrap_Loader_Programming_Tutorial_in_ASM
http://www.viralpatel.net/taj/tutorial/hello_world_bootloader.php
http://organicdesign.co.nz/Writing_a_boot_loader_in_assembler
I never needed that, but I imagine you need to consume .net methods as COM objects.
This links might be useful:
http://www.pcreview.co.uk/forums/thread-1225474.php
http://www.codeproject.com/KB/COM/COM_DOTNET_INTEROP.aspx
But I would avoid mixing .net and native if possible.
You can't reference native binaries like that in .net.
You can use pinvoke calls to call your function in native dll.
Search msdn or google for pinvoke example...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.