01 2015 档案

摘要:WSAAsyncSelect functionTheWSAAsyncSelectfunction requests Windows message-based notification of network events for a socket.SyntaxC++int WSAAsyncSelec... 阅读全文
posted @ 2015-01-23 23:41 StuJnX6ry 阅读(327) 评论(0) 推荐(0)
摘要:Directorylookupforthefile"xxx.mdf"failedwiththeoperatingsystemerror2(系统找不到指定的文件。).reason:sql2005以后禁用了xp_cmdshell存储过程solution:sp_configure 'show advanc... 阅读全文
posted @ 2015-01-21 12:24 StuJnX6ry 阅读(599) 评论(0) 推荐(0)
摘要:CREATE LOGIN [sa] WITH PASSWORD = '888';ALTER LOGIN [sa] ENABLEGOALTER LOGIN [sa] WITH PASSWORD = '888';GO 阅读全文
posted @ 2015-01-20 22:00 StuJnX6ry 阅读(290) 评论(0) 推荐(0)
摘要:WinMainCallback:LRESULT CLoginProcess::DefMainWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)case WM_PAINT: |m_Progress == PRG_PATCH |Re... 阅读全文
posted @ 2015-01-19 19:07 StuJnX6ry 阅读(346) 评论(0) 推荐(0)
摘要:MVC Concept:Control - manipulation:GtkComboBoxModel - data:GtkTreeStore or GtkListStoreView - renderer:GtkCellRendererGtkCellLayout interface provides... 阅读全文
posted @ 2015-01-14 17:16 StuJnX6ry 阅读(1349) 评论(0) 推荐(0)
摘要:int main (int argc, char **argv){ /* Initialize i18n support */ gtk_set_locale (); /* Initialize the widget set */ gtk_init (&argc, &argv); /* Cr... 阅读全文
posted @ 2015-01-13 14:06 StuJnX6ry 阅读(353) 评论(0) 推荐(0)
摘要:#include int main ( int argc, char *argv[] ){ GtkWidget *window; GtkWidget *table; GtkWidget *button; GtkWidget *frame; gtk_init( &arg... 阅读全文
posted @ 2015-01-13 13:45 StuJnX6ry 阅读(573) 评论(0) 推荐(0)
摘要:Installation and usage tutorial for WindowsReleasing your programYou should always ship all needed DLLs & files with your binaries. End-users should n... 阅读全文
posted @ 2015-01-13 03:18 StuJnX6ry 阅读(290) 评论(0) 推荐(0)
摘要:Re: Building GTK+ 3.0 with Visual Studio 2013From: Syed Akbar To: gtk-list gnome orgSubject: Re: Building GTK+ 3.0 with Visual Studio 2013Date: Sat, 0... 阅读全文
posted @ 2015-01-13 01:35 StuJnX6ry 阅读(283) 评论(0) 推荐(0)
摘要:Game Coding Completehttp://www.onegameamonth.com/ 阅读全文
posted @ 2015-01-09 19:30 StuJnX6ry 阅读(92) 评论(0) 推荐(0)
摘要:http://www.bluesnews.com/abrash/http://fabiensanglard.net/Building Quake 2 with Visual Studio 2013http://www.raspberrypi.org/forums/viewtopic.php?f=78... 阅读全文
posted @ 2015-01-07 21:25 StuJnX6ry 阅读(174) 评论(0) 推荐(0)
摘要:ftp://ftp.idsoftware.com/idstuff/doom/ 阅读全文
posted @ 2015-01-05 13:31 StuJnX6ry 阅读(205) 评论(0) 推荐(0)
摘要:constint*u;//指向constint的指针intconst*u;//同上int*constu;//指向int的指针intconst*constu;//指向const对象的const指针constint*constu;//同上 阅读全文
posted @ 2015-01-04 21:17 StuJnX6ry 阅读(111) 评论(0) 推荐(0)
摘要:typedef void (*callbackFun)(int a, int b);struct exm { int type; callbackFun fun;};A pointer is a special kind of variable that holds the add... 阅读全文
posted @ 2015-01-04 01:23 StuJnX6ry 阅读(452) 评论(0) 推荐(0)
摘要:GTK (GIMP Toolkit) 起源於开发用来做为GIMP (General Image Manipulation Program)的一套工具. GTK建立在GDK (GIMP Drawing Kit)的上层, 基本上是将Xlib功能包装起来. 它被称为GIMP toolkit是因为原来是写来... 阅读全文
posted @ 2015-01-04 00:51 StuJnX6ry 阅读(194) 评论(0) 推荐(0)
摘要:ASCII -> GB2312 -> GBKASCII -> Unicode( Universal Multiple-octet CodedCharacter Set, Abbreviation:UCS)UTF:UCSTransformationFormatUCS-2编码(16进制)UTF-8字节流... 阅读全文
posted @ 2015-01-03 17:21 StuJnX6ry 阅读(172) 评论(0) 推荐(0)