leon_ (02.02.2010 12:28, просмотров: 184) ответил Сергей Борщ на Ну вот, скажем, надо создать приложение, которое эмулирует некий подключенный к COM прибор.
Может вот это, на крайний случай, сгодится? Virtual Serial Ports Driver XP User's Manual
Using it With C/C++
In C and C++, you have to dynamically load the DLL file, find the function(s) you want to use, and call them. A sample function to do this in Visual C++ is shown below:
typedef bool (__stdcall *CreatePairFn)(char *Port1, char *Port2);
typedef bool (__stdcall *DeletePairFn)(char *Port1);
typedef bool (__stdcall *DeleteAllFn)(void);
Code example: ...