my_os2dlfcn.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) Yuri Dario & 2000 MySQL AB
  2.    All the above parties has a full, independent copyright to
  3.    the following code, including the right to use the code in
  4.    any manner without any demands from the other parties.
  5.    This library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public
  7.    License as published by the Free Software Foundation; either
  8.    version 2 of the License, or (at your option) any later version.
  9.    This library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.  *    dlfcn::Unix dynamic loading for OS/2
  19.  *
  20.  * Compatibility layer for dynamic loading.
  21.  * Only minimal implementation
  22.  *
  23. */
  24. #define RTLD_LAZY 0
  25. #define RTLD_NOW 0
  26. void* dlopen( char* path, int flag);
  27. char* dlerror( void);
  28. void* dlsym( void* hmod, char* fn);
  29. void  dlclose( void* hmod);
  30. char fail[ 256];
  31. void* dlopen( char* path, int flag)
  32. {
  33.    APIRET  rc;
  34.    HMODULE hmod;
  35.    rc = DosLoadModule( fail, sizeof( fail), path, &hmod);
  36.    if (rc)
  37.       return NULL;
  38.    return (void*) hmod;
  39. }
  40. char* dlerror( void)
  41. {
  42.    return fail;
  43. }
  44. void* dlsym( void* hmod, char* fn)
  45. {
  46.    APIRET  rc;
  47.    PFN    addr;
  48.    rc = DosQueryProcAddr( (HMODULE) hmod, 0l, fn, &addr);
  49.    if (rc)
  50.       return NULL;
  51.    return (void*) addr;
  52. }
  53. void  dlclose( void* hmod)
  54. {
  55.    APIRET  rc;
  56.    rc = DosFreeModule( (HMODULE) hmod);
  57. }