author | Joshua Cranmer <Pidgeot18@gmail.com> |
Sun, 03 Mar 2013 16:46:26 -0600 | |
changeset 14312 | 3044a67220c7cc9927cc1aed9096854495756472 |
parent 11711 | 84ac3c71109811da751f0ef2d72108075938f094 |
child 32564 | 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++; }