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
# -*- coding: utf-8 -*- | |
# Hello World! | |
# see: https://github.com/Microsoft/ChakraCore/wiki/Embedding-ChakraCore | |
from ctypes import * | |
cc = cdll.LoadLibrary('ChakraCore') | |
# typedef void (CALLBACK *JsBackgroundWorkItemCallback)(_In_opt_ void *callbackState); | |
JsBackgroundWorkItemCallback = CFUNCTYPE(None, c_void_p) |
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
# Copyright (c) 2014 yuzurihara. All rights reserved. | |
# Released under the BSD 3-Clause License. | |
# http://opensource.org/licenses/BSD-3-Clause | |
import os | |
import sys | |
import subprocess | |
import atexit | |
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
$ git push -u orign master |