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
PROFILE.ASM
Package: fd.zip [view]
Upload User: ys_happy
Upload Date: 2007-01-09
Package Size: 20k
Code Size: 1k
Category:
assembly language
Development Platform:
Asm
- .386
- .model flat,STDCALL
- include win32.asi ; some 32-bit constants and structures
- include win32.ase
- extrn IntToString : PROC
- .data
- szfilname db 'fdz.ini',0
- szPClass db 'Fractal Designer',0
- strbuf db 256 DUP (0)
- .code
- public StringToProfile, StringFromProfile
- StringToProfile PROC
- call WritePrivateProfileString,offset szPClass, esi,edi,offset szfilname
- ret
- StringToProfile ENDP
- StringFromProfile PROC
- call GetPrivateProfileString,offset szPClass, esi,edi,offset strbuf,256,offset szfilname
- lea esi,[strbuf]
- ret
- StringFromProfile ENDP
- public IntToProfile, IntFromProfile
- IntToProfile PROC
- call IntToString
- call StringToProfile
- ret
- IntToProfile ENDP
- IntFromProfile PROC
- call GetPrivateProfileInt,offset szPClass,esi,eax,offset szfilname
- ret
- IntFromProfile ENDP
- end