home *** CD-ROM | disk | FTP | other *** search
- /*----------------------------------------------------------------------------*/
- /* Memory Compression sample using The Xceed Zip Compression Library 4 */
- /* For C++Builder 3 */
- /* Copyright (c) 1999 Xceed Software Inc. */
- /*----------------------------------------------------------------------------*/
-
- #include <vcl.h>
- #pragma hdrstop
- USERES("MemoryCompression.res");
- USEFORM("MsgStack.cpp", frmMsgStack);
-
-
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfrmMsgStack), &frmMsgStack);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
-