
C
iteye_13882
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C - macros use technique - do while(0);
it is not common when you see a lot of C language has something similar to the following defintion. #define macro_name(arg) do { \ // ... \ } while (0); but why do we have this t...原创 2012-12-19 07:41:30 · 97 阅读 · 0 评论 -
Windows - communication with Mailslots
Mailslot is some mechanism on Windows that you can compare against the Linux implemenation such as Named Pipe or windows Socket. If you are looking for an introduction on the Windows Mailslot, yo...原创 2012-12-19 14:50:15 · 109 阅读 · 0 评论