资源简介

学习sciter代码的好实例 , 同时sciterNote也是一款软件的源码, 希望能帮助到学习的人.

资源截图

代码片段和文件信息


#include “sciter-x-window.hpp“

#include 

// native API 

#if 0
static sciter::value libcurl_api() {

  sciter::value api_map;

/*  sciter::value api_math_map;

  std::function native_sum = [](int a int b) { return a + b; };
  std::function native_sub = [](int a int b) { return a - b; };

  api_math_map.set_item(sciter::value(“sum“) sciter::vfunc( native_sum ));
  api_math_map.set_item(sciter::value(“sub“) sciter::vfunc( native_sub ));
  */
  
  //api_map.set_item(sciter::value(“math“) api_math_map);

  /*
    return {
      math: {
        sum: {native_sum}
        sub: {native_sub}
      }
    }
  */
  return api_map;
}
#endif


class frame: public sciter::window 
{
  UINT hk_ticks = 0; // hot key tick

评论

共有 条评论

相关资源