This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef HANDLE timer_queue_t; | |
/** | |
* | |
*/ | |
timer_queue_t w32_timer_queue_new() | |
{ | |
return CreateTimerQueue(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; | |
using System.Windows.Forms; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef threading_WaitHandle_hxx | |
#define threading_WaitHandle_hxx | |
namespace threading { | |
class WaitHandle { | |
public: | |
typedef HANDLE handle_type; | |
public: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using std; | |
using std.io; | |
using net; | |
using net.sockets; | |
using text.encoding; | |
let server : TCPListener = nil; | |
try { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; | |
using System.Windows.Forms; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; フォントセットを追加します。 | |
(w32-add-font "MS Gothic 13" | |
'((spec | |
((:char-spec ascii :height any) | |
strict | |
(w32-logfont "MS Gothic" 0 -13 400 0 nil nil nil 0 1 3 0)) | |
((:char-spec ascii :height any :weight bold) | |
strict | |
(w32-logfont "MS Gothic" 0 -13 700 0 nil nil nil 0 1 3 0) | |
((spacing . -1))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja-jp" lang="ja-jp"> | |
<head> | |
<title>untitled</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="Content-Style-Type" content="text/css" /> | |
<meta http-equiv="Content-Script-Type" content="text/javascript" /> | |
<link rel="stylesheet" type="text/css" href="./screen.css" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
body { | |
margin: 2%; | |
font-family: 'MS Pゴシック'; | |
font-size: 1.0em; | |
color: #2b2b2b; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using std; | |
using runtime.remoting; | |
using runtime.remoting.channels; | |
using runtime.remoting.channels.ipc; | |
namespace sample.demo.remotingipc { | |
/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using std; | |
using runtime.remoting; | |
using runtime.remoting.channels; | |
using runtime.remoting.channels.ipc; | |
namespace sample.demo.remotingipc { | |
/** |