实例介绍
NDK独立编译出现找不到头文件的情况,可以将这个文件解压后放到NDK根目录下platforms\android-api版本号\arch-arm\usr\并进行链接来解决
【实例截图】
【核心代码】
include
└── include
├── alloca.h
├── android
│ ├── api-level.h
│ ├── asset_manager.h
│ ├── asset_manager_jni.h
│ ├── bitmap.h
│ ├── configuration.h
│ ├── input.h
│ ├── keycodes.h
│ ├── log.h
│ ├── looper.h
│ ├── native_activity.h
│ ├── native_window.h
│ ├── native_window_jni.h
│ ├── obb.h
│ ├── rect.h
│ ├── sensor.h
│ ├── storage_manager.h
│ ├── tts.h
│ └── window.h
├── arpa
│ ├── inet.h
│ ├── nameser.h
│ └── telnet.h
├── asm
│ ├── a.out.h
│ ├── arch
│ │ ├── board.h
│ │ ├── board-perseus2.h
│ │ ├── cpu.h
│ │ ├── dma.h
│ │ ├── fpga.h
│ │ ├── gpio.h
│ │ ├── gpio-switch.h
│ │ ├── hardware.h
│ │ ├── io.h
│ │ ├── irqs.h
│ │ ├── mcbsp.h
│ │ ├── memory.h
│ │ ├── mtd-xip.h
│ │ ├── mux.h
│ │ ├── omap24xx.h
│ │ ├── serial.h
│ │ ├── timex.h
│ │ └── vmalloc.h
│ ├── atomic.h
│ ├── auxvec.h
│ ├── bitops.h
│ ├── byteorder.h
│ ├── cacheflush.h
│ ├── cache.h
│ ├── cputime.h
│ ├── delay.h
│ ├── div64.h
│ ├── dma.h
│ ├── dma-mapping.h
│ ├── domain.h
│ ├── dyntick.h
│ ├── elf.h
│ ├── errno.h
│ ├── fcntl.h
│ ├── fpstate.h
│ ├── glue.h
│ ├── hardirq.h
│ ├── hardware.h
│ ├── hw_irq.h
│ ├── ide.h
│ ├── ioctl.h
│ ├── ioctls.h
│ ├── io.h
│ ├── ipcbuf.h
│ ├── irq.h
│ ├── linkage.h
│ ├── local.h
│ ├── locks.h
│ ├── mc146818rtc.h
│ ├── memory.h
│ ├── mman.h
│ ├── module.h
│ ├── msgbuf.h
│ ├── mtd-xip.h
│ ├── page.h
│ ├── param.h
│ ├── percpu.h
│ ├── pgalloc.h
│ ├── pgtable.h
│ ├── pgtable-hwdef.h
│ ├── poll.h
│ ├── posix_types.h
│ ├── processor.h
│ ├── proc-fns.h
│ ├── procinfo.h
│ ├── ptrace.h
│ ├── resource.h
│ ├── scatterlist.h
│ ├── semaphore.h
│ ├── sembuf.h
│ ├── shmbuf.h
│ ├── shmparam.h
│ ├── sigcontext.h
│ ├── siginfo.h
│ ├── signal.h
│ ├── sizes.h
│ ├── smp.h
│ ├── socket.h
│ ├── sockios.h
│ ├── spinlock.h
│ ├── spinlock_types.h
│ ├── statfs.h
│ ├── stat.h
│ ├── suspend.h
│ ├── system.h
│ ├── termbits.h
│ ├── termios.h
│ ├── thread_info.h
│ ├── timex.h
│ ├── tlbflush.h
│ ├── topology.h
│ ├── types.h
│ ├── uaccess.h
│ ├── unaligned.h
│ ├── unistd.h
│ ├── user.h
│ └── vga.h
├── asm-generic
│ ├── 4level-fixup.h
│ ├── audit_dir_write.h
│ ├── bitops
│ │ ├── atomic.h
│ │ ├── __ffs.h
│ │ ├── ffz.h
│ │ ├── find.h
│ │ ├── fls64.h
│ │ ├── fls.h
│ │ ├── le.h
│ │ └── non-atomic.h
│ ├── bug.h
│ ├── cputime.h
│ ├── emergency-restart.h
│ ├── errno-base.h
│ ├── errno.h
│ ├── fcntl.h
│ ├── futex.h
│ ├── ioctl.h
│ ├── ipc.h
│ ├── local.h
│ ├── memory_model.h
│ ├── mman-common.h
│ ├── mman.h
│ ├── mutex-xchg.h
│ ├── percpu.h
│ ├── pgtable.h
│ ├── pgtable-nopmd.h
│ ├── pgtable-nopud.h
│ ├── poll.h
│ ├── resource.h
│ ├── sections.h
│ ├── siginfo.h
│ ├── signal.h
│ ├── socket.h
│ ├── swab.h
│ ├── tlb.h
│ ├── topology.h
│ └── xor.h
├── assert.h
├── byteswap.h
├── ctype.h
├── dirent.h
├── dlfcn.h
├── EGL
│ ├── eglext.h
│ ├── egl.h
│ └── eglplatform.h
├── elf.h
├── endian.h
├── err.h
├── errno.h
├── fcntl.h
├── features.h
├── fenv.h
├── fnmatch.h
├── fts.h
├── getopt.h
├── GLES
│ ├── glext.h
│ ├── gl.h
│ └── glplatform.h
├── GLES2
│ ├── gl2ext.h
│ ├── gl2.h
│ └── gl2platform.h
├── GLES3
│ ├── gl3ext.h
│ ├── gl3.h
│ └── gl3platform.h
├── grp.h
├── inttypes.h
├── jni.h
├── KHR
│ └── khrplatform.h
├── lastlog.h
├── libgen.h
├── limits.h
├── link.h
├── linux
│ ├── aio_abi.h
│ ├── akm8976.h
│ ├── android_alarm.h
│ ├── android_pmem.h
│ ├── android_power.h
│ ├── a.out.h
│ ├── apm_bios.h
│ ├── ashmem.h
│ ├── ata.h
│ ├── atmapi.h
│ ├── atmdev.h
│ ├── atm.h
│ ├── atmioc.h
│ ├── atmppp.h
│ ├── atmsap.h
│ ├── attribute_container.h
│ ├── autoconf.h
│ ├── auto_fs.h
│ ├── auxvec.h
│ ├── backing-dev.h
│ ├── binder.h
│ ├── binfmts.h
│ ├── bio.h
│ ├── bitmap.h
│ ├── bitops.h
│ ├── blkdev.h
│ ├── blkpg.h
│ ├── blockgroup_lock.h
│ ├── byteorder
│ │ ├── big_endian.h
│ │ ├── generic.h
│ │ ├── little_endian.h
│ │ ├── swabb.h
│ │ └── swab.h
│ ├── cache.h
│ ├── calc64.h
│ ├── capability.h
│ ├── capi.h
│ ├── cdev.h
│ ├── cdrom.h
│ ├── circ_buf.h
│ ├── clk.h
│ ├── coda_fs_i.h
│ ├── coda.h
│ ├── compat.h
│ ├── compiler-gcc.h
│ ├── compiler.h
│ ├── completion.h
│ ├── config.h
│ ├── console_struct.h
│ ├── cpu.h
│ ├── cpumask.h
│ ├── ctype.h
│ ├── dccp.h
│ ├── debug_locks.h
│ ├── delay.h
│ ├── device.h
│ ├── dirent.h
│ ├── dmaengine.h
│ ├── dma-mapping.h
│ ├── dm-ioctl.h
│ ├── efs_dir.h
│ ├── efs_fs_i.h
│ ├── efs_fs_sb.h
│ ├── elevator.h
│ ├── elf-em.h
│ ├── elf.h
│ ├── err.h
│ ├── errno.h
│ ├── errqueue.h
│ ├── etherdevice.h
│ ├── ext2_fs.h
│ ├── ext3_fs.h
│ ├── fadvise.h
│ ├── fb.h
│ ├── fcntl.h
│ ├── fd.h
│ ├── file.h
│ ├── filter.h
│ ├── fs.h
│ ├── ftape.h
│ ├── futex.h
│ ├── genhd.h
│ ├── gfp.h
│ ├── hardirq.h
│ ├── hdlc
│ │ └── ioctl.h
│ ├── hdreg.h
│ ├── hdsmart.h
│ ├── highmem.h
│ ├── hil.h
│ ├── i2c.h
│ ├── icmp.h
│ ├── if_arcnet.h
│ ├── if_arp.h
│ ├── if_bridge.h
│ ├── if_ether.h
│ ├── if_fc.h
│ ├── if_fddi.h
│ ├── if.h
│ ├── if_hippi.h
│ ├── if_packet.h
│ ├── if_ppp.h
│ ├── if_tr.h
│ ├── if_tun.h
│ ├── if_vlan.h
│ ├── in6.h
│ ├── in.h
│ ├── init.h
│ ├── inotify.h
│ ├── input.h
│ ├── interrupt.h
│ ├── ioctl.h
│ ├── ioport.h
│ ├── ioprio.h
│ ├── ipc.h
│ ├── ip.h
│ ├── ipmi_msgdefs.h
│ ├── ipmi_smi.h
│ ├── ipv6.h
│ ├── ipx.h
│ ├── irq_cpustat.h
│ ├── irqflags.h
│ ├── irq.h
│ ├── irqreturn.h
│ ├── jbd.h
│ ├── jiffies.h
│ ├── kdev_t.h
│ ├── kd.h
│ ├── kernelcapi.h
│ ├── kernel.h
│ ├── kernel_stat.h
│ ├── kexec.h
│ ├── keyboard.h
│ ├── keychord.h
│ ├── key.h
│ ├── klist.h
│ ├── kmod.h
│ ├── kobject.h
│ ├── kref.h
│ ├── ktime.h
│ ├── limits.h
│ ├── linkage.h
│ ├── list.h
│ ├── lockd
│ │ ├── nlm.h
│ │ └── xdr.h
│ ├── lockdep.h
│ ├── loop.h
│ ├── magic.h
│ ├── major.h
│ ├── mc146818rtc.h
│ ├── mca.h
│ ├── mempolicy.h
│ ├── mempool.h
│ ├── miscdevice.h
│ ├── mmc
│ │ ├── card.h
│ │ ├── host.h
│ │ └── mmc.h
│ ├── mm.h
│ ├── mmzone.h
│ ├── mod_devicetable.h
│ ├── module.h
│ ├── moduleparam.h
│ ├── mount.h
│ ├── msdos_fs.h
│ ├── msg.h
│ ├── msm_adsp.h
│ ├── msm_audio.h
│ ├── msm_mdp.h
│ ├── mt9t013.h
│ ├── mtd
│ │ ├── bbm.h
│ │ ├── blktrans.h
│ │ ├── cfi_endian.h
│ │ ├── cfi.h
│ │ ├── compatmac.h
│ │ ├── flashchip.h
│ │ ├── map.h
│ │ ├── mtd.h
│ │ ├── nand_ecc.h
│ │ ├── nand.h
│ │ ├── nftl.h
│ │ ├── onenand_regs.h
│ │ └── partitions.h
│ ├── mtio.h
│ ├── mutex-debug.h
│ ├── mutex.h
│ ├── ncp.h
│ ├── ncp_mount.h
│ ├── ncp_no.h
│ ├── netdevice.h
│ ├── netfilter
│ │ ├── nf_conntrack_common.h
│ │ ├── nf_conntrack_ftp.h
│ │ ├── nf_conntrack_sctp.h
│ │ ├── nf_conntrack_tcp.h
│ │ ├── nf_conntrack_tuple_common.h
│ │ ├── nfnetlink_conntrack.h
│ │ ├── nfnetlink.h
│ │ ├── x_tables.h
│ │ ├── xt_CLASSIFY.h
│ │ ├── xt_comment.h
│ │ ├── xt_connbytes.h
│ │ ├── xt_CONNSECMARK.h
│ │ ├── xt_conntrack.h
│ │ ├── xt_dccp.h
│ │ ├── xt_esp.h
│ │ ├── xt_helper.h
│ │ ├── xt_length.h
│ │ ├── xt_limit.h
│ │ ├── xt_mac.h
│ │ ├── xt_multiport.h
│ │ ├── xt_NFQUEUE.h
│ │ ├── xt_physdev.h
│ │ ├── xt_pkttype.h
│ │ ├── xt_quota.h
│ │ ├── xt_realm.h
│ │ ├── xt_sctp.h
│ │ ├── xt_SECMARK.h
│ │ ├── xt_state.h
│ │ ├── xt_statistic.h
│ │ ├── xt_string.h
│ │ ├── xt_tcpmss.h
│ │ └── xt_tcpudp.h
│ ├── netfilter_arp
│ │ └── arp_tables.h
│ ├── netfilter_arp.h
│ ├── netfilter_bridge.h
│ ├── netfilter.h
│ ├── netfilter_ipv4
│ │ ├── ip_conntrack.h
│ │ ├── ip_conntrack_tuple.h
│ │ ├── ip_nat.h
│ │ ├── ip_nat_rule.h
│ │ ├── ip_queue.h
│ │ ├── ip_tables.h
│ │ ├── ipt_addrtype.h
│ │ ├── ipt_ah.h
│ │ ├── ipt_CLASSIFY.h
│ │ ├── ipt_comment.h
│ │ ├── ipt_connbytes.h
│ │ ├── ipt_dccp.h
│ │ ├── ipt_dscp_.h
│ │ ├── ipt_DSCP.h
│ │ ├── ipt_ECN.h
│ │ ├── ipt_esp.h
│ │ ├── ipt_hashlimit.h
│ │ ├── ipt_helper.h
│ │ ├── ipt_iprange.h
│ │ ├── ipt_length.h
│ │ ├── ipt_LOG.h
│ │ ├── ipt_mac.h
│ │ ├── ipt_NFQUEUE.h
│ │ ├── ipt_owner.h
│ │ ├── ipt_physdev.h
│ │ ├── ipt_pkttype.h
│ │ ├── ipt_realm.h
│ │ ├── ipt_recent.h
│ │ ├── ipt_REJECT.h
│ │ ├── ipt_sctp.h
│ │ ├── ipt_state.h
│ │ ├── ipt_string.h
│ │ ├── ipt_TCPMSS.h
│ │ ├── ipt_tos_.h
│ │ ├── ipt_TOS.h
│ │ ├── ipt_TTL.h
│ │ └── ipt_ULOG.h
│ ├── netfilter_ipv4.h
│ ├── netfilter_ipv6
│ │ ├── ip6_tables.h
│ │ ├── ip6t_ah.h
│ │ ├── ip6t_esp.h
│ │ ├── ip6t_frag.h
│ │ ├── ip6t_ipv6header.h
│ │ ├── ip6t_length.h
│ │ ├── ip6t_LOG.h
│ │ ├── ip6t_mac.h
│ │ ├── ip6t_opts.h
│ │ ├── ip6t_owner.h
│ │ ├── ip6t_physdev.h
│ │ ├── ip6t_REJECT.h
│ │ └── ip6t_rt.h
│ ├── netfilter_ipv6.h
│ ├── net.h
│ ├── netlink.h
│ ├── nfs2.h
│ ├── nfs3.h
│ ├── nfs4.h
│ ├── nfsacl.h
│ ├── nfsd
│ │ ├── auth.h
│ │ ├── const.h
│ │ ├── debug.h
│ │ ├── export.h
│ │ ├── interface.h
│ │ ├── nfsfh.h
│ │ ├── stats.h
│ │ └── xdr.h
│ ├── nfs.h
│ ├── nfs_xdr.h
│ ├── node.h
│ ├── nodemask.h
│ ├── notifier.h
│ ├── numa.h
│ ├── nvram.h
│ ├── omap_csmi.h
│ ├── pagemap.h
│ ├── param.h
│ ├── patchkey.h
│ ├── pci.h
│ ├── pci_ids.h
│ ├── pci_regs.h
│ ├── percpu_counter.h
│ ├── percpu.h
│ ├── personality.h
│ ├── pfkeyv2.h
│ ├── pkt_cls.h
│ ├── pkt_sched.h
│ ├── platform_device.h
│ ├── plist.h
│ ├── pm.h
│ ├── pnp.h
│ ├── poll.h
│ ├── posix_acl.h
│ ├── posix_types.h
│ ├── ppdev.h
│ ├── ppp_defs.h
│ ├── prctl.h
│ ├── preempt.h
│ ├── proc_fs.h
│ ├── ptrace.h
│ ├── qic117.h
│ ├── qnxtypes.h
│ ├── quota.h
│ ├── raid
│ │ ├── md.h
│ │ ├── md_k.h
│ │ ├── md_p.h
│ │ ├── md_u.h
│ │ └── xor.h
│ ├── random.h
│ ├── rbtree.h
│ ├── rcupdate.h
│ ├── reboot.h
│ ├── relay.h
│ ├── resource.h
│ ├── route.h
│ ├── rtc.h
│ ├── rtnetlink.h
│ ├── rwsem.h
│ ├── sched.h
│ ├── sem.h
│ ├── seq_file.h
│ ├── seqlock.h
│ ├── serial_core.h
│ ├── serial_reg.h
│ ├── serio.h
│ ├── shm.h
│ ├── signal.h
│ ├── skbuff.h
│ ├── slab.h
│ ├── smb.h
│ ├── smp.h
│ ├── smp_lock.h
│ ├── socket.h
│ ├── sockios.h
│ ├── soundcard.h
│ ├── spinlock_api_smp.h
│ ├── spinlock_api_up.h
│ ├── spinlock.h
│ ├── spinlock_types.h
│ ├── spinlock_types_up.h
│ ├── spinlock_up.h
│ ├── stacktrace.h
│ ├── statfs.h
│ ├── stat.h
│ ├── stddef.h
│ ├── string.h
│ ├── stringify.h
│ ├── sunrpc
│ │ ├── auth_gss.h
│ │ ├── auth.h
│ │ ├── clnt.h
│ │ ├── debug.h
│ │ ├── gss_api.h
│ │ ├── gss_asn1.h
│ │ ├── gss_err.h
│ │ ├── msg_prot.h
│ │ ├── sched.h
│ │ ├── stats.h
│ │ ├── svcauth.h
│ │ ├── svc.h
│ │ ├── timer.h
│ │ ├── types.h
│ │ ├── xdr.h
│ │ └── xprt.h
│ ├── swap.h
│ ├── sysctl.h
│ ├── sysdev.h
│ ├── sysfs.h
│ ├── taskstats.h
│ ├── taskstats_kern.h
│ ├── tcp.h
│ ├── telephony.h
│ ├── termios.h
│ ├── textsearch.h
│ ├── thread_info.h
│ ├── threads.h
│ ├── time.h
│ ├── timer.h
│ ├── times.h
│ ├── timex.h
│ ├── tiocl.h
│ ├── transport_class.h
│ ├── tty.h
│ ├── types.h
│ ├── udp.h
│ ├── ufs_fs_i.h
│ ├── ufs_fs_sb.h
│ ├── uio.h
│ ├── un.h
│ ├── unistd.h
│ ├── usb_ch9.h
│ ├── usbdevice_fs.h
│ ├── usb.h
│ ├── user.h
│ ├── utime.h
│ ├── utsname.h
│ ├── version.h
│ ├── vfs.h
│ ├── videodev2.h
│ ├── videodev.h
│ ├── vmalloc.h
│ ├── vt_buffer.h
│ ├── vt.h
│ ├── wait.h
│ ├── wanrouter.h
│ ├── wireless.h
│ ├── workqueue.h
│ ├── xattr.h
│ ├── zconf.h
│ ├── zlib.h
│ └── zorro_ids.h
├── locale.h
├── machine
│ ├── asm.h
│ ├── cdefs.h
│ ├── cpu-features.h
│ ├── endian.h
│ ├── exec.h
│ ├── ieee.h
│ ├── internal_types.h
│ ├── kernel.h
│ ├── limits.h
│ ├── setjmp.h
│ └── _types.h
├── malloc.h
├── math.h
├── memory.h
├── mntent.h
├── mtd
│ ├── mtd-abi.h
│ └── mtd-user.h
├── net
│ ├── ethernet.h
│ ├── ethertypes.h
│ ├── if_arp.h
│ ├── if_ether.h
│ ├── if.h
│ ├── if_ieee1394.h
│ ├── if_packet.h
│ ├── if_types.h
│ └── route.h
├── netdb.h
├── netinet
│ ├── ether.h
│ ├── icmp6.h
│ ├── if_ether.h
│ ├── in6.h
│ ├── in.h
│ ├── in_systm.h
│ ├── ip6.h
│ ├── ip.h
│ ├── ip_icmp.h
│ ├── tcp.h
│ └── udp.h
├── netpacket
│ └── packet.h
├── nsswitch.h
├── OMXAL
│ ├── OpenMAXAL_Android.h
│ ├── OpenMAXAL.h
│ └── OpenMAXAL_Platform.h
├── pathconf.h
├── paths.h
├── poll.h
├── pthread.h
├── pwd.h
├── regex.h
├── resolv.h
├── rs
│ ├── cpp
│ │ ├── RenderScript.h
│ │ ├── rsCppStructs.h
│ │ ├── rsDispatch.h
│ │ └── util
│ │ ├── RefBase.h
│ │ ├── StrongPointer.h
│ │ └── TypeHelpers.h
│ ├── rsDefines.h
│ └── scriptc
│ ├── rs_allocation.rsh
│ ├── rs_atomic.rsh
│ ├── rs_cl.rsh
│ ├── rs_core.rsh
│ ├── rs_debug.rsh
│ ├── rs_element.rsh
│ ├── rs_math.rsh
│ ├── rs_matrix.rsh
│ ├── rs_object.rsh
│ ├── rs_quaternion.rsh
│ ├── rs_sampler.rsh
│ ├── rs_time.rsh
│ └── rs_types.rsh
├── sched.h
├── semaphore.h
├── setjmp.h
├── sgtty.h
├── sha1.h
├── signal.h
├── SLES
│ ├── OpenSLES_AndroidConfiguration.h
│ ├── OpenSLES_Android.h
│ ├── OpenSLES_AndroidMetadata.h
│ ├── OpenSLES.h
│ └── OpenSLES_Platform.h
├── stdint.h
├── stdio.h
├── stdlib.h
├── string.h
├── strings.h
├── sys
│ ├── atomics.h
│ ├── cachectl.h
│ ├── cdefs_elf.h
│ ├── cdefs.h
│ ├── dirent.h
│ ├── endian.h
│ ├── epoll.h
│ ├── _errdefs.h
│ ├── errno.h
│ ├── eventfd.h
│ ├── exec_elf.h
│ ├── file.h
│ ├── fsuid.h
│ ├── inotify.h
│ ├── ioctl_compat.h
│ ├── ioctl.h
│ ├── ipc.h
│ ├── klog.h
│ ├── limits.h
│ ├── linux-syscalls.h
│ ├── mman.h
│ ├── mount.h
│ ├── param.h
│ ├── poll.h
│ ├── prctl.h
│ ├── ptrace.h
│ ├── queue.h
│ ├── reboot.h
│ ├── resource.h
│ ├── select.h
│ ├── sendfile.h
│ ├── _sigdefs.h
│ ├── socketcalls.h
│ ├── socket.h
│ ├── statfs.h
│ ├── stat.h
│ ├── syscall.h
│ ├── sysconf.h
│ ├── sysinfo.h
│ ├── syslimits.h
│ ├── sysmacros.h
│ ├── _system_properties.h
│ ├── system_properties.h
│ ├── timeb.h
│ ├── time.h
│ ├── times.h
│ ├── ttychars.h
│ ├── ttydev.h
│ ├── _types.h
│ ├── types.h
│ ├── uio.h
│ ├── un.h
│ ├── utime.h
│ ├── utsname.h
│ ├── vfs.h
│ ├── vt.h
│ ├── wait.h
│ └── _wchar_limits.h
├── syslog.h
├── termio.h
├── termios.h
├── thread_db.h
├── time64.h
├── time.h
├── unistd.h
├── util.h
├── utime.h
├── utmp.h
├── wchar.h
├── wctype.h
├── zconf.h
└── zlib.h
37 directories, 785 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论