mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Adjust CalManager
This commit is contained in:
parent
8559c576d6
commit
22a74cec56
3 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <iostream>
|
||||
|
||||
#if !DEBUG
|
||||
#if DEBUG
|
||||
#if defined(_WINDOWS_)
|
||||
#include <Windows.h>
|
||||
#include <strsafe.h>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
splashScreenImage: "Assets/SplashScreen.scale-200.png",
|
||||
splashScreenColor: "#00f",
|
||||
displayName: "WindowsCalculator"
|
||||
displayName: "Calculator"
|
||||
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
var fMemoryItemChangedCallback = Module.addFunction((state, indexOfMemory) => _memoryItemChangedCallback(state, indexOfMemory), 'vii');
|
||||
var fOnHistoryItemAddedCallback = Module.addFunction((state, addedItemIndex) => _onHistoryItemAddedCallback(state, addedItemIndex), 'vii');
|
||||
var fOnNoRightParenAddedCallback = Module.addFunction((state) => _onNoRightParenAddedCallback(state), 'vi');
|
||||
var fSetExpressionDisplayCallback = Module.addFunction((state) => _setExpressionDisplayCallback (state), 'vi');
|
||||
var fSetExpressionDisplayCallback = Module.addFunction((state, historyItem) => _setExpressionDisplayCallback(state, historyItem), 'vii');
|
||||
var fSetMemorizedNumbersCallback = Module.addFunction((state, size, numbers) => _setMemorizedNumbersCallback(state, size, numbers), 'viii');
|
||||
|
||||
var ret = `${fGetCEngineStringCallback};`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue