一个DLL可以跟踪两个可执行程序吗?
vc++调用DLL;
FORTRAN也要调用这个DLL,
怎么办?

解决方案 »

  1.   

    这些事与你无关
    系统会自己做好的你只管调用
    系统把DLL会映射到你的程序私有地址空间的
      

  2.   

    1.多个exe模块调用同一个dll, dll里面的全局变量相会之间不产生影响,也即说,每个exe模块都有一份全局变量的拷贝
    2.如果要在exe模块之间共享数据,则必须为dll声明一个共享的全局数据段。
      

  3.   

    可以用第一个EXE文件初始化好的变量等给第二个EXE调用吗?我现在的实验要求这样,但没有实现。
    请教各位,可以做到吗?怎么做?
      

  4.   

    Vicart(卫卡特):怎么为dll声明一个共享的全局数据段?
      

  5.   

    不同的应用程序通过DLL共享同一个数据段,确实有些问题;并不象多个实例共享那样简单
      

  6.   

    可以的,DLL的好处就在于此;同时在内存中只有一个副本
      

  7.   

    aben456(风轻扬) :怎么做?
    -----------------------------------------------------------------
    我是一个无助的人!!!!!!!!!
      

  8.   

    dll中建立共享段就可以
    --------------------------------------------------------------------------------
    Under certain circumstances, 32-bit DLLs might have to share data with other 32-bit DLLs loaded by a different application or with different mappings of the same DLL. Because 32-bit DLLs are mapped into the calling process's address space, which is private, sharing data with other DLLs mapped into the address spaces of different applications involves creating shared data section(s) or using memory mapped files. This article discusses the former -- creating shared data sections by using the #pragma statement. Typically, system-wide hooks installed in a DLL need to share some common data among different mappings. MORE INFORMATION
    Each Win32-based application runs in its own private address space. If a 32- bit application installs a system-wide hook with the hook callback function in a DLL, this DLL is mapped into the address space of every application for which the hook event occurred. Every application that the DLL gets mapped into, gets its own set of variables (data). Often there will be a scenario where hook callback functions mapped into different application or process address spaces need to share some data variables -- such as HHOOK or a Window Handle -- among all mappings of the DLL. Because each application's address space is private, DLLs with hook callback functions mapped into one application's address spaces cannot share data (variables) with other hook callback functions mapped into a different application's address space unless a shared data SECTION exists in the DLL. Every 32-bit DLL (or EXE) is composed of a collection of sections. By convention, each section name begins with a period. (The period is not required.) These sections can have the following attributes: READ, WRITE, SHARED, and EXECUTE. DLLs that need to share data among different mappings can use the #pragma pre-processor command in the DLL source file to create a shared data section that contains the data to be shared. The following sample code shows by example how to define a named-data section (.shared) in a DLL. Sample Code   #pragma data_seg(".shared")
       int iSharedVar = 0;
       #pragma data_seg() The first line directs the compiler to place all the data declared in this section into the .shared data segment. Therefore, the iSharedVar variable is stored in the .shared segment. By default, data is not shared. Note that you must initialize all data in the named section. The data_seg pragma applies only to initialized data. The third line, #pragma data_seg(), resets allocation to the default data section. If one application makes any changes to variables in the shared data section, all mappings of this DLL will reflect the same changes, so you need to be careful when dealing with shared data in applications or DLLs. You must also tell the linker that the variables in the section you defined are to be shared by modifying your .DEF file to include a SECTIONS section or by specifying /SECTION:.shared,RWS in your link line. Here's an example SECTIONS section:    SECTIONS
       .shared   READ WRITE SHARED Alternatively, some compilers allow you to set the linker switch in your code so that if your file is ever copied to another project, the linker switch goes with it. To do this, include the following line in your code preferably near the #pragma data_seg(".shared") line:    #pragma comment(linker, "/SECTION:.shared,RWS") Be careful not to include any extraneous spaces inside the quotation s because this may cause the linker to misinterpret the directive. In the case of a typical hook DLL, the HHOOK, HINSTDLL, and other variables can go into the shared data section. 
      

  9.   

    在dll重开辟攻共享数据段是可以让多个进程共享该数据段重的数据的。但是存在一个访问冲突的问题,这就必须用到核心编程,如互斥,事件等。可以考虑两个exe,即两个进程共享数据可以采用管道,和内存映射文件的方法。这种方法也较简便。
    祝顺利!
      

  10.   

    创建名为DLL的dll工程:
    1. --dll.cpp文件--// Dll.cpp : Defines the entry point for the DLL application.
    //#include "stdafx.h"#pragma data_seg(".shared")
    int g_CallCounter=0;//改变量保存在数据段.shared中#pragma data_seg()//恢复数据段为缺省.data#pragma comment(linker,"/SECTION:.shared,RWS")//指示连接器:数据段.shared为读、写和共享_declspec (dllexport) int __stdcall GetCallCounter()
    {
    g_CallCounter++;
    return g_CallCounter;}BOOL APIENTRY DllMain( HANDLE hModule, 
                           DWORD  ul_reason_for_call, 
                           LPVOID lpReserved
     )
    {
    //g_CallCounter=0;
        return TRUE;
    }2.-- dll.def文件 --LIBRARY Dll
    EXPORTS
    GetCallCounter @1创建DllClient的Console工程,代买如下:// DllClient.cpp : Defines the entry point for the console application.
    //#include "stdafx.h"
    #include "windows.h"typedef int (GETCALLCOUNTER)();
    int _tmain(int argc, _TCHAR* argv[])
    {
    HINSTANCE hInstance;
    GETCALLCOUNTER* pGetCallCounter;
    hInstance=::LoadLibrary("f:\\dll\\debug\\dll.dll");
    pGetCallCounter=(GETCALLCOUNTER*)::GetProcAddress(hInstance,"GetCallCounter");
    printf("shared counter now is: %d",(*pGetCallCounter)()); getchar();
    return 0;
    }
    测试:
    1.开两个命令行窗口
    2.在其中一个命令行窗口运行dllclient.exe,结果如下:
    shared counter now is:1
    注:程序此时等待输入
    3.在另一个命令行窗口运行dllclient.exe,结果如下:
    shared counter now is:2
      

  11.   

    对不起,忘了释放库了:
    // DllClient.cpp : Defines the entry point for the console application.
    //#include "stdafx.h"
    #include "windows.h"typedef int (GETCALLCOUNTER)();
    int _tmain(int argc, _TCHAR* argv[])
    {
    HINSTANCE hInstance;
    GETCALLCOUNTER* pGetCallCounter; hInstance=::LoadLibrary("f:\\dll\\debug\\dll.dll"); pGetCallCounter=(GETCALLCOUNTER*)::GetProcAddress(hInstance,"GetCallCounter");
    printf("shared counter now is: %d",(*pGetCallCounter)());
    getchar(); ::FreeLibrary(hInstance);
    return 0;
    }