author | Neil Rashbrook <neil@parkwaycc.co.uk> |
Tue, 01 Jul 2014 22:15:31 +0100 | |
changeset 20417 | 812f5cce4d7fc97b44570ad17f6cb2be8c2ae297 |
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++; }