This file contains hidden or 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
| /*---------------------------------------------------------------------------- | |
| プログラム名:D3DBasic | |
| プログラム概要:Direct3D 11の基本プログラムです | |
| -------------------------------------------------------------------------------- | |
| */ | |
| //インクルード | |
| #include <windows.h> | |
| #include <stdio.h> | |
| #include <locale.h> |
This file contains hidden or 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.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Data; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows.Forms; |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <Windows.h> | |
| #include <tchar.h> | |
| #include <xaudio2.h> | |
| #include "HSWaveClass/CHSWAVEReader.hpp" //自前Waveファイル読み込みクラス | |
| #pragma comment(lib,"Xaudio2.lib") | |
| //プロトタイプ宣言 |
This file contains hidden or 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
| /* | |
| CHSRIFFReader Class | |
| - RIFF(Resource Interchange File Format) Reader Class - | |
| Copyright (C) 2014 HiroakiSoftware. All rights reserved. | |
| */ | |
| #include "CHSRIFFReader.hpp" | |
| CHSRIFFReader::CHSRIFFReader(TCHAR *lpszRiffFilePath) { | |
| this->hFile = NULL; |
This file contains hidden or 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
| #module | |
| #uselib "gdi32.dll" | |
| #func GetTextExtentPoint32 "GetTextExtentPoint32A" int , str , int , sptr | |
| //一行の文字列から描画時のサイズを求める | |
| #deffunc GetStringDrawSize str string, var sx , var sy | |
| if(strlen(string)){ |
This file contains hidden or 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"?> | |
| <Application xmlns="http://schemas.microsoft.com/windows/2009/Ribbon"> | |
| <!-- 項目の定義 --> | |
| <Application.Commands> | |
| <!-- アプリケーションメニュー項目 --> | |
| <Command Name="AppMenu" /> | |
| <!-- アプリケーションメニューのサブ項目 --> | |
| <Command Name="AppMenu_Open" Symbol="ID_RIBBON_OPEN"> |
This file contains hidden or 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
| //更新日時 | |
| //---------- | |
| //2013/08/23 | |
| //2013/08/24 | |
| //2013/08/25 | |
| //2013/08/26 | |
| //2013/08/31 | |
| //---------- | |
| //2013/09/01 |
This file contains hidden or 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"?> | |
| <Application xmlns="http://schemas.microsoft.com/windows/2009/Ribbon"> | |
| <!-- 項目の定義 --> | |
| <Application.Commands> | |
| <!-- アプリケーションメニュー項目 --> | |
| <Command Name="AppMenu"> | |
| <Command.TooltipDescription> | |
| <String>ファイルメニュー</String> | |
| </Command.TooltipDescription> |
This file contains hidden or 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
| //更新日時 | |
| //2013/08/23 | |
| //2013/08/24 | |
| //2013/08/25 | |
| #ifndef _CHSLinearList_HPP_ | |
| #define _CHSLinearList_HPP_ | |
| #define HSLinearList_DefaultFirstSerialNumber 1 |
This file contains hidden or 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
| #include <iostream> | |
| #include <cstdio> | |
| #include "CHSLinearList.hpp" | |
| using namespace std; | |
| struct Mydata | |
| { | |
| char Text[100]; | |
| int number; |