Ignore:
Timestamp:
Aug 17, 1999, 6:35:30 PM (26 years ago)
Author:
phaller
Message:

Fix: removed ODINCRT remains

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winimgres.cpp

    r464 r529  
    1 /* $Id: winimgres.cpp,v 1.5 1999-08-09 22:55:11 phaller Exp $ */
     1/* $Id: winimgres.cpp,v 1.6 1999-08-17 16:35:11 phaller Exp $ */
    22
    33/*
     
    1616#include <stdlib.h>
    1717#include <string.h>
    18 #include <odincrt.h>
    1918
    2019#include "misc.h"
     
    161160        unicodestr += *unicodestr;
    162161    }
    163     ODIN_FS_BEGIN
     162
    164163    res = new Win32Resource(this, id, NTRT_STRING, (ULONG)*unicodestr, (char *)unicodestr);
    165     ODIN_FS_END
    166164    if(res == NULL) {
    167165        dprintf(("new Win32Resource failed!\n"));
     
    170168  }
    171169  else
    172     ODIN_FS_BEGIN
    173170    res = new Win32Resource(this, id, type, pData->Size, resdata);
    174     ODIN_FS_END
    175171
    176172  return res;
     
    307303    if(hres)
    308304    {
    309       ODIN_FS_BEGIN
    310305      res = new Win32Resource(this, hres, (ULONG)lpszName, (ULONG)szType);
    311       ODIN_FS_END
    312306    }
    313307
     
    316310      if(hres)
    317311      {
    318          ODIN_FS_BEGIN
    319312         res = new Win32Resource(this, hres, (ULONG)lpszName, (ULONG)szType);
    320          ODIN_FS_END
    321313      }
    322314      else    dprintf(("FindResourceA can't find string %d\n", (int)lpszName));
     
    408400    if(hres)
    409401    {
    410       ODIN_FS_BEGIN
    411402      res = new Win32Resource(this, hres, (ULONG)lpszName, (ULONG)szType);
    412       ODIN_FS_END
    413403    }
    414404
     
    417407      if(hres)
    418408      {
    419         ODIN_FS_BEGIN
    420409        res = new Win32Resource(this, hres, (ULONG)lpszName, (ULONG)szType);
    421         ODIN_FS_END
    422410      }
    423411      else    dprintf(("FindResourceW can't find string %d\n", (int)lpszName));
Note: See TracChangeset for help on using the changeset viewer.