| |
(не показано 13 промежуточных версий 5 участников) |
Строка 1: | Строка 1: |
| <tt>socket_delete(HSOCK hsock);</tt> | | <tt>socket_delete(HSOCK hsock);</tt> |
| | | |
− | MGHbF2 <a href="http://dqjugiuwymhi.com/">dqjugiuwymhi</a>, [url=http://rigkdspskzna.com/]rigkdspskzna[/url], [link=http://kavixvzkorct.com/]kavixvzkorct[/link], http://oytbrnrnexts.com/
| + | == Описание == |
| + | Эта функция удаляет сокет. |
| | | |
− | http://topsailnet.com/#39145 buy ambien online no prescription - buy ambien http://www.americanindependentwriters.net/#35827 ativan - buy ativan online without a prescription
| + | == Параметры == |
| + | <ol> |
| + | <li>'''HSOCK hsock |
| + | </li> |
| + | </ol> |
| | | |
− | http://lifeofpis.com/#75709 alternatives to lamisil - lamisil tablets san francisco http://www.corasyndicate.com/#59342 buy phentermine no prescription - buy phentermine 37.5http://donteatthatyet.com/#70608 buy valium without prescription - buy valium no prescriptionhttp://www.inthesunnyspot.net/#22456 cialis - buy cialishttp://www.carolinarailfan.com#15033 phentermine 37.5 weight loss results - phentermine 37.5mg no prescripton requiredhttp://www.buyonlinecialis.co.uk#25376 buy cialis kamagra - buy cialis europehttp://www.buyviagrageneric.co.uk#70789 buy viagra without - viagra cialishttp://pamelahelmephotography.com/#39765 diffedrence between imitrex sumatriptan succinate tablets - imitrex crushedhttp://www.buyonlinecialis.co.uk#69839 buy cialis 20mg - buy cialis online in ukhttp://www.buyviagrageneric.co.uk#33178 buy viagra - viagrahttp://www.buy-tramadol-now.com/#26499 tramadol online prescriptions free viagra - tramadol for severe mestrual crampshttp://www.orderphenterminenow.org/#82098 weight loss clinics phentermine atlanta - phentermine airborne expresshttp://www.buyviagrabluepills.com#95147 use paypal to purchase viagra - buy online prescription viagrahttp://www.the-hangs.com#39100 buy levitra online cheap - buy levitra cheaphttp://www.buy-tadalafil-online.org/#19601 can you take viagra while taking cialis 24-hr. - can i take 4 5mg cialis at a time http://tzukune.info/#81859 nolvadex testicular size - nolvadex 20 mghttp://tzukune.info/#69547 proper pct cycle pct nolvadex - buy nolvadex online http://www.buy-tadalafil-online.org/#15254 cialis - buy cialis onlinehttp://www.buyviagrabluepills.com#82592 buy viagra without prescription - buy viagra in mexicohttp://www.buy-tadalafil-online.org/#23657 buy cialis generic - buy cialis online http://tzukune.info/#32193 why did they pull nolvadex xt? - how does nolvadex workhttp://www.buy-tadalafil-online.org/#52756 cialis cialis online online - top internet cialis web sites http://tzukune.info/#36687 where is the best place to buy nolvadex apo - tamoxifen nolvadexhttp://www.buyambienzolpidem.com#15784 buy cheapest online Ambien - hair loss and ambienhttp://www.buylevitraed.com#27966 buy levitra online cheap - buy levitra
| + | == Пример == |
| + | '''#include <synsock_api.h>''' |
| + | <pre> |
| + | // Сюда запомним адреса функций |
| + | socket_f* socket = NULL; |
| + | socket_connect_f* socket_connect = NULL; |
| + | socket_write_f* socket_write = NULL; |
| + | socket_read_f* socket_read = NULL; |
| + | socket_bind_f* socket_bind = NULL; |
| + | socket_close_f* socket_close = NULL; |
| + | socket_delete_f* socket_delete = NULL; |
| + | |
| + | HSOCK g_socket = HSOCK_INVALID; |
| + | |
| + | if ( g_socket != HSOCK_INVALID ) |
| + | { |
| + | socket_delete( g_socket ); |
| + | g_socket = HSOCK_INVALID; |
| + | } |
| + | </pre> |
| + | |
| + | [[Категория:Synsock_api]] |
Текущая версия на 17:19, 9 октября 2011
socket_delete(HSOCK hsock);
Описание
Эта функция удаляет сокет.
Параметры
- HSOCK hsock
Пример
#include <synsock_api.h>
// Сюда запомним адреса функций
socket_f* socket = NULL;
socket_connect_f* socket_connect = NULL;
socket_write_f* socket_write = NULL;
socket_read_f* socket_read = NULL;
socket_bind_f* socket_bind = NULL;
socket_close_f* socket_close = NULL;
socket_delete_f* socket_delete = NULL;
HSOCK g_socket = HSOCK_INVALID;
if ( g_socket != HSOCK_INVALID )
{ socket_delete( g_socket ); g_socket = HSOCK_INVALID;
}