This file contains 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
import os | |
from fs.osfs import OSFS | |
from fs.expose import dokan | |
from fs.expose.dokan.libdokan import LPDWORD | |
import ctypes | |
from ctypes.wintypes import BOOL, LPWSTR, DWORD | |
advapi32 = ctypes.windll.advapi32 |
This file contains 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
import os | |
from conans import ConanFile, CMake, tools | |
class PkgConanFile(ConanFile): | |
name = 'PkgA' | |
version = '1.0' | |
settings = 'os', 'compiler', 'build_type', 'arch' |
This file contains 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
import pyglet | |
from pyglet.graphics import Batch | |
import tasks | |
window = pyglet.window.Window() | |
batch = Batch() | |
@window.event |