author | Neil Rashbrook <neil@parkwaycc.co.uk> |
Fri, 04 Dec 2015 00:59:16 +0000 | |
changeset 23379 | 3c5164cb201316b1f36f0276cdccc5e92cd7e26a |
parent 12286 | 84ac3c71109811da751f0ef2d72108075938f094 |
child 34168 | 2f1b233c4f65d26b0dc3ff3236758b73759cc25a |
permissions | -rw-r--r-- |
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ var EXPORTED_SYMBOLS = ["GetNextUntitledValue"]; var sUntitledCount = 1; function GetNextUntitledValue() { return sUntitledCount++; }