-
-
Notifications
You must be signed in to change notification settings - Fork 14
ブラウザ・SNS
Gaccho@as_cll edited this page Jun 7, 2018
·
3 revisions
test2
宣言
int32_t asBrowser(const char* const url_str)
引数 url_str
:URL
戻り値 0
:成功
-1
:エラー発生
#define ASLIB_INCLUDE_DL
#include "AsLib.hpp"
//メイン関数
int32_t AsMain()
{
//管理クラスの宣言
MainControl mc(u8"SampleCode", { 960,540 }, BG_COLOR);
asBrowser(u8"https://github.com/");
//メインループ
while (asLoop()) {};
return 0;
}