| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- function DummyCore() {
- }
- DummyCore.prototype.Render = function() {
- Polycode.DummyCore_Render(this.__ptr)
- }
- DummyCore.prototype.systemUpdate = function() {
- Polycode.DummyCore_systemUpdate(this.__ptr)
- }
- DummyCore.prototype.setCursor = function(cursorType) {
- Polycode.DummyCore_setCursor(this.__ptr, cursorType)
- }
- DummyCore.prototype.createThread = function(target) {
- Polycode.DummyCore_createThread(this.__ptr, target)
- }
- DummyCore.prototype.createMutex = function() {
- Polycode.DummyCore_createMutex(this.__ptr)
- }
- DummyCore.prototype.copyStringToClipboard = function(str) {
- Polycode.DummyCore_copyStringToClipboard(this.__ptr, str)
- }
- DummyCore.prototype.getClipboardString = function() {
- Polycode.DummyCore_getClipboardString(this.__ptr)
- }
- DummyCore.prototype.createFolder = function(folderPath) {
- Polycode.DummyCore_createFolder(this.__ptr, folderPath)
- }
- DummyCore.prototype.copyDiskItem = function(itemPath,destItemPath) {
- Polycode.DummyCore_copyDiskItem(this.__ptr, itemPath,destItemPath)
- }
- DummyCore.prototype.moveDiskItem = function(itemPath,destItemPath) {
- Polycode.DummyCore_moveDiskItem(this.__ptr, itemPath,destItemPath)
- }
- DummyCore.prototype.removeDiskItem = function(itemPath) {
- Polycode.DummyCore_removeDiskItem(this.__ptr, itemPath)
- }
- DummyCore.prototype.openFolderPicker = function() {
- Polycode.DummyCore_openFolderPicker(this.__ptr)
- }
- DummyCore.prototype.openFilePicker = function(extensions,allowMultiple) {
- Polycode.DummyCore_openFilePicker(this.__ptr, extensions,allowMultiple)
- }
- DummyCore.prototype.saveFilePicker = function(extensions) {
- Polycode.DummyCore_saveFilePicker(this.__ptr, extensions)
- }
- DummyCore.prototype.handleVideoModeChange = function(modeInfo) {
- Polycode.DummyCore_handleVideoModeChange(this.__ptr, modeInfo)
- }
- DummyCore.prototype.flushRenderContext = function() {
- Polycode.DummyCore_flushRenderContext(this.__ptr)
- }
- DummyCore.prototype.openURL = function(url) {
- Polycode.DummyCore_openURL(this.__ptr, url)
- }
- DummyCore.prototype.getTicks = function() {
- Polycode.DummyCore_getTicks(this.__ptr)
- }
- DummyCore.prototype.executeExternalCommand = function(command,args,inDirectory) {
- Polycode.DummyCore_executeExternalCommand(this.__ptr, command,args,inDirectory)
- }
- DummyCore.prototype.systemParseFolder = function(pathString,showHidden,targetVector) {
- Polycode.DummyCore_systemParseFolder(this.__ptr, pathString,showHidden,targetVector)
- }
|