diff options
Diffstat (limited to 'js/src/Ice/AsyncStatus.js')
-rw-r--r-- | js/src/Ice/AsyncStatus.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/Ice/AsyncStatus.js b/js/src/Ice/AsyncStatus.js new file mode 100644 index 00000000000..e8d3142bcf9 --- /dev/null +++ b/js/src/Ice/AsyncStatus.js @@ -0,0 +1,15 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +(function(global){ + var Ice = global.Ice || {}; + var AsyncStatus = {Queued: 0, Sent: 1}; + Ice.AsyncStatus = AsyncStatus; + global.Ice = Ice; +}(typeof (global) === "undefined" ? window : global)); |