|
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 #include "native_client/src/shared/ppapi_proxy/ppruntime.h" | |
8 | |
9 // This definition is weak to allow customers to override it when | |
10 // initialization is needed before the main PPAPI processing happens. | |
11 | |
12 int __attribute__((weak)) main(int argc, char* argv[]) { | |
Mark Seaborn
2012/06/13 20:27:37
This file looks roughly like NaCl's src/untrusted/
bbudge
2012/06/14 02:45:10
This was copied from the SRPC proxy library, pprun
| |
13 return PpapiPluginMain(); | |
14 } | |
15 | |
OLD | NEW |