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
| #pragma comment(lib, "user32") | |
| #pragma comment(lib, "psapi") | |
| #include <stdio.h> | |
| #include <windows.h> | |
| #include <psapi.h> | |
| void main() | |
| { | |
| HWND hWnd; |
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 <atlbase.h> | |
| #include <sapi.h> | |
| void main() | |
| { | |
| CComPtr<ISpVoice> cpVoice; | |
| ::CoInitialize(nullptr); | |
| cpVoice.CoCreateInstance(CLSID_SpVoice); |
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
| /* | |
| Monty Hall Simulator by 3735943886 | |
| Using Microsft Cryptography APIs for random generations | |
| License : GPL | |
| */ | |
| #include <iostream> | |
| #include <windows.h> | |
| #include <wincrypt.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
| #include <iostream> | |
| #include <string> | |
| #include <regex> | |
| #include <map> | |
| /* | |
| * English 2 Korean | |
| * from http://www.phpschool.com/link/tipntech/55742 | |
| * |
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
| #pragma comment(lib, "winmm") | |
| #pragma comment(lib, "ole32") | |
| #include <sapi.h> | |
| void main() | |
| { | |
| HRESULT hr; | |
| ISpVoice* pVoice; |
NewerOlder