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
mom_util.h
Upload User: hbbaokai
Upload Date: 2009-07-13
Package Size: 328k
Code Size: 1k
Category:
VOIP program
Development Platform:
Visual C++
- #ifndef _MOM_IMAGE_H_
- #define _MOM_IMAGE_H_
- # ifdef __cplusplus
- extern "C" {
- # endif
- #include "momusys.h"
- Image *AllocImage(UInt size_x, UInt size_y, ImageType type);
- Void FreeImage(Image *image);
- Void CopyImage(Image *image_in, Image *image_out);
- Void SetConstantImage(Image *image, Float val);
- Void SubImage(Image *image_in1, Image *image_in2, Image *image_out);
- Vop * SallocVop (void);
- Vop * AllocVop (UInt x, UInt y);
- Void SfreeVop (Vop *vop);
- Void FreeVop (Vop *vop);
- Void CopyVopNonImageField (Vop *in, Vop *out);
- # ifdef __cplusplus
- }
- # endif
- #endif
- #ifndef _TUH_TOOLBOX_H
- #define _TUH_TOOLBOX_H
- # ifdef __cplusplus
- extern "C" {
- # endif
- #define MAX_UCHAR_VAL 255
- #define MAX_SHORT_VAL 32767
- #define MAX_FLOAT_VAL 2000000000
- #ifndef SIGN0
- #define SIGN0(a) ( ((a)<0) ? -1 : (((a)>0) ? 1 : 0) )
- #endif
- #ifndef SIGN
- #define SIGN(a) ((a)<0 ? (-1) : (1))
- #endif
- #ifndef ROUND
- #define ROUND(x) ( (Int) ((x) + SIGN0(x)*0.5) )
- #endif
- #include "mom_structs.h"
- # ifdef __cplusplus
- }
- # endif
- #endif