次の方法で共有


単純なDynamic-Link ライブラリの作成

次の例は、単純な DLL Myputs.dllを作成するために必要なソース コードです。 myPuts という単純な文字列印刷関数を定義します。 Myputs DLL は、エントリ ポイント関数を定義しません。これは、C ランタイム ライブラリとリンクされており、実行する初期化関数またはクリーンアップ関数がないためです。

DLL をビルドするには、開発ツールに含まれているドキュメントの指示に従います。

myPuts を使用する例については、「 Load-Time動的リンクの使用 」または「Run-Time 動的リンクの使用」を参照してください。

// The myPuts function writes a null-terminated string to
// the standard output device.
 
// The export mechanism used here is the __declspec(export)
// method supported by Microsoft Visual Studio, but any
// other export method supported by your development
// environment may be substituted.
 
 
#include <windows.h>
 
#define EOF (-1)
 
#ifdef __cplusplus    // If used by C++ code, 
extern "C" {          // we need to export the C interface
#endif
 
__declspec(dllexport) int __cdecl myPuts(LPCWSTR lpszMsg)
{
    DWORD cchWritten;
    HANDLE hConout;
    BOOL fRet;
 
    // Get a handle to the console output device.

    hConout = CreateFileW(L"CONOUT$",
                         GENERIC_WRITE,
                         FILE_SHARE_WRITE,
                         NULL,
                         OPEN_EXISTING,
                         FILE_ATTRIBUTE_NORMAL,
                         NULL);

    if (INVALID_HANDLE_VALUE == hConout)
        return EOF;
 
    // Write a null-terminated string to the console output device.
 
    while (*lpszMsg != L'\0')
    {
        fRet = WriteConsole(hConout, lpszMsg, 1, &cchWritten, NULL);
        if( (FALSE == fRet) || (1 != cchWritten) )
            return EOF;
        lpszMsg++;
    }
    return 1;
}
 
#ifdef __cplusplus
}
#endif