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
main.h
Package: treesize.zip [view]
Upload User: dfhlxjd
Upload Date: 2007-01-07
Package Size: 12k
Code Size: 1k
Category:
Shell api
Development Platform:
Visual C++
- //----------------------------------------
- // (c) Reliable Software 1997
- //----------------------------------------
- #ifndef _MAIN_H_INCLUDED
- #define _MAIN_H_INCLUDED
- #include <windows.h>
- void CenterWindow(HWND hwnd);
- HINSTANCE GetHinstance (HWND hwnd);
- class WinException
- {
- public:
- WinException (char* msg)
- : _err (GetLastError()), _msg(msg)
- {}
- DWORD GetError() const { return _err; }
- char* GetMessage () const { return _msg; }
- private:
- DWORD _err;
- char* _msg;
- };
- // out of memory handler that throws WinException
- int NewHandler (size_t size);
- #endif // _MAIN_H_INCLUDED