Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
fatfs_syms.c
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 1k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- /*
- * linux/fs/fat/fatfs_syms.c
- *
- * Exported kernel symbols for the low-level FAT-based fs support.
- *
- */
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/mm.h>
- #include <linux/msdos_fs.h>
- #include <linux/fat_cvf.h>
- EXPORT_SYMBOL(fat_new_dir);
- EXPORT_SYMBOL(fat_get_block);
- EXPORT_SYMBOL(fat_clear_inode);
- EXPORT_SYMBOL(fat_date_unix2dos);
- EXPORT_SYMBOL(fat_delete_inode);
- EXPORT_SYMBOL(fat__get_entry);
- EXPORT_SYMBOL(fat_mark_buffer_dirty);
- EXPORT_SYMBOL(fat_notify_change);
- EXPORT_SYMBOL(fat_put_super);
- EXPORT_SYMBOL(fat_attach);
- EXPORT_SYMBOL(fat_detach);
- EXPORT_SYMBOL(fat_build_inode);
- EXPORT_SYMBOL(fat_read_super);
- EXPORT_SYMBOL(fat_search_long);
- EXPORT_SYMBOL(fat_readdir);
- EXPORT_SYMBOL(fat_scan);
- EXPORT_SYMBOL(fat_statfs);
- EXPORT_SYMBOL(fat_write_inode);
- EXPORT_SYMBOL(register_cvf_format);
- EXPORT_SYMBOL(unregister_cvf_format);
- EXPORT_SYMBOL(fat_get_cluster);
- EXPORT_SYMBOL(fat_dir_ioctl);
- EXPORT_SYMBOL(fat_add_entries);
- EXPORT_SYMBOL(fat_dir_empty);
- EXPORT_SYMBOL(fat_truncate);
- EXPORT_SYMBOL(fat_brelse);
- static int __init init_fat_fs(void)
- {
- fat_hash_init();
- return 0;
- }
- module_init(init_fat_fs)