소스 검색

* Make names unique across modules

Michaël Van Canneyt 9 달 전
부모
커밋
fc0fb5968a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/wasm-utils/src/wasm.timer.shared.pas

+ 2 - 2
packages/wasm-utils/src/wasm.timer.shared.pas

@@ -23,8 +23,8 @@ Type
 
 const
   TimerExportName  = 'timer';
-  TimerFN_Allocate = 'allocate';
-  TimerFN_DeAllocate = 'deallocate';
+  TimerFN_Allocate = 'allocate_timer';
+  TimerFN_DeAllocate = 'deallocate_timer';
 
 
 implementation