Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: ports/nacl-spawn/include/elf_reader.h

Issue 627103003: Add shared library version of libcli_main Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ports/nacl-spawn/include/bsd_spawn.h ('k') | ports/nacl-spawn/include/library_dependencies.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Native Client Authors. All rights reserved. 1 // Copyright (c) 2014 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NACL_SPAWN_ELF_READER_ 5 #ifndef NACL_SPAWN_ELF_READER_
6 #define NACL_SPAWN_ELF_READER_ 6 #define NACL_SPAWN_ELF_READER_
7 7
8 #include <elf.h> 8 #include <elf.h>
9 #include <stdio.h> 9 #include <stdio.h>
10 10
(...skipping 25 matching lines...) Expand all
36 36
37 const char* filename_; 37 const char* filename_;
38 bool is_valid_; 38 bool is_valid_;
39 bool is_static_; 39 bool is_static_;
40 Elf64_Half machine_; 40 Elf64_Half machine_;
41 unsigned char elf_class_; 41 unsigned char elf_class_;
42 std::vector<std::string> neededs_; 42 std::vector<std::string> neededs_;
43 }; 43 };
44 44
45 #endif // NACL_SPAWN_ELF_READER_ 45 #endif // NACL_SPAWN_ELF_READER_
OLDNEW
« no previous file with comments | « ports/nacl-spawn/include/bsd_spawn.h ('k') | ports/nacl-spawn/include/library_dependencies.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698