xref: /aoo42x/main/sw/source/ui/inc/globals.h (revision 6a8e298a)
1*6a8e298aSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*6a8e298aSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*6a8e298aSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*6a8e298aSAndrew Rist  * distributed with this work for additional information
6*6a8e298aSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*6a8e298aSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*6a8e298aSAndrew Rist  * "License"); you may not use this file except in compliance
9*6a8e298aSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*6a8e298aSAndrew Rist  *
11*6a8e298aSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*6a8e298aSAndrew Rist  *
13*6a8e298aSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*6a8e298aSAndrew Rist  * software distributed under the License is distributed on an
15*6a8e298aSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*6a8e298aSAndrew Rist  * KIND, either express or implied.  See the License for the
17*6a8e298aSAndrew Rist  * specific language governing permissions and limitations
18*6a8e298aSAndrew Rist  * under the License.
19*6a8e298aSAndrew Rist  *
20*6a8e298aSAndrew Rist  *************************************************************/
21*6a8e298aSAndrew Rist 
22*6a8e298aSAndrew Rist 
23cdf0e10cSrcweir #ifndef _GLOBALS_H
24cdf0e10cSrcweir #define _GLOBALS_H
25cdf0e10cSrcweir 
26cdf0e10cSrcweir enum SwChangeState
27cdf0e10cSrcweir {
28cdf0e10cSrcweir 	STATE_OFF = 0,
29cdf0e10cSrcweir 	STATE_ON = 1,
30cdf0e10cSrcweir 	STATE_TOGGLE = 2
31cdf0e10cSrcweir };
32cdf0e10cSrcweir 
33cdf0e10cSrcweir #endif
34