Changeset 11915


Ignore:
Timestamp:
Oct 17, 1999, 3:52:20 AM (26 years ago)
Author:
bird
Message:

Exception throwing is removed. Separate init method instead.

Location:
tags/trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/include/windllpe2lx.h

    r11862 r11915  
    1 /* $Id: windllpe2lx.h,v 1.2 1999-10-14 01:39:12 bird Exp $ */
     1/* $Id: windllpe2lx.h,v 1.3 1999-10-17 01:52:19 bird Exp $ */
    22
    33/*
     
    1616#include <winimagepe2lx.h>
    1717
     18/**
     19 * Pe2Lx Dll images.
     20 * @author      knut st. osmundsen
     21 * @approval    -
     22 */
    1823class Win32Pe2LxDll : public Win32Pe2LxImage, public Win32DllBase
    1924{
     
    2227    Win32Pe2LxDll(HINSTANCE hinstance, BOOL fWin32k) throw(ULONG);
    2328    virtual ~Win32Pe2LxDll();
     29    BOOL     init();
    2430
    2531    /** @cat Exports */
  • TabularUnified tags/trunk/include/winexepe2lx.h

    r11862 r11915  
    1 /* $Id: winexepe2lx.h,v 1.2 1999-10-14 01:39:13 bird Exp $ */
     1/* $Id: winexepe2lx.h,v 1.3 1999-10-17 01:52:19 bird Exp $ */
    22
    33/*
     
    2727public:
    2828    /** @cat Constructor/Destructor */
    29     Win32Pe2LxExe(HINSTANCE hinstance, BOOL fWin32k) throw(ULONG);
     29    Win32Pe2LxExe(HINSTANCE hinstance, BOOL fWin32k);
    3030    virtual ~Win32Pe2LxExe();
     31    BOOL init();
    3132};
    3233
  • TabularUnified tags/trunk/include/winimagepe2lx.h

    r11862 r11915  
    1 /* $Id: winimagepe2lx.h,v 1.2 1999-10-14 01:39:13 bird Exp $ */
     1/* $Id: winimagepe2lx.h,v 1.3 1999-10-17 01:52:20 bird Exp $ */
    22
    33/*
     
    3939public:
    4040    /** @cat constructor and destructor */
    41     Win32Pe2LxImage(HINSTANCE hinstance, BOOL fWin32k) throw(ULONG);
     41    Win32Pe2LxImage(HINSTANCE hinstance, BOOL fWin32k);
    4242    virtual ~Win32Pe2LxImage();
     43    virtual BOOL init();
    4344
    4445private:
Note: See TracChangeset for help on using the changeset viewer.