xref: /trunk/main/sal/osl/os2/salinit.cxx (revision cf6516809c57e1bb0a940545cca99cdad54d4ce2)
187d2adbcSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
387d2adbcSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
487d2adbcSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
587d2adbcSAndrew Rist  * distributed with this work for additional information
687d2adbcSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
787d2adbcSAndrew Rist  * to you under the Apache License, Version 2.0 (the
887d2adbcSAndrew Rist  * "License"); you may not use this file except in compliance
987d2adbcSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
1187d2adbcSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
1387d2adbcSAndrew Rist  * Unless required by applicable law or agreed to in writing,
1487d2adbcSAndrew Rist  * software distributed under the License is distributed on an
1587d2adbcSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1687d2adbcSAndrew Rist  * KIND, either express or implied.  See the License for the
1787d2adbcSAndrew Rist  * specific language governing permissions and limitations
1887d2adbcSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
2087d2adbcSAndrew Rist  *************************************************************/
2187d2adbcSAndrew Rist 
22*2de5e723SYuri Dario #include "precompiled_sal.hxx"
23*2de5e723SYuri Dario #include "sal/config.h"
2487d2adbcSAndrew Rist 
25*2de5e723SYuri Dario #include "osl/process.h"
26*2de5e723SYuri Dario #include "sal/main.h"
27cdf0e10cSrcweir #include "sal/types.h"
28cdf0e10cSrcweir 
29c99cd5fcSYuri Dario #ifdef __cplusplus
30cdf0e10cSrcweir extern "C" {
311a6da4ceSYuri Dario #endif
32cdf0e10cSrcweir 
33c99cd5fcSYuri Dario /*----------------------------------------------------------------------------*/
34c99cd5fcSYuri Dario 
35c99cd5fcSYuri Dario // replaced by macros in sal/main.h
sal_detail_initialize(int argc,char ** argv)36cdf0e10cSrcweir void SAL_CALL sal_detail_initialize(int argc, char ** argv)
37cdf0e10cSrcweir {
38*2de5e723SYuri Dario     osl_setCommandArgs(argc, argv);
39cdf0e10cSrcweir }
40cdf0e10cSrcweir 
sal_detail_deinitialize()41cdf0e10cSrcweir void SAL_CALL sal_detail_deinitialize()
42cdf0e10cSrcweir {
43c99cd5fcSYuri Dario }
44cdf0e10cSrcweir 
45c99cd5fcSYuri Dario #ifdef __cplusplus
46c99cd5fcSYuri Dario }   // extern "C"
47cdf0e10cSrcweir #endif
48