スタンドアロン アプリケーション
このスタンドアロン アプリケーションは、1 つの関数の呼び出しで構成され、分散アプリケーションの基礎を形成します。 関数 HelloProc は、スタンドアロン アプリケーションまたは分散アプリケーションにコンパイルしてリンクできるように、独自のソース ファイルで定義されています。
/* file hellop.c */
#include <stdio.h>
#include <windows.h>
void HelloProc(char * pszString)
{
printf("%s\n", pszString);
}
/* file: hello.c, a stand-alone application */
#include "hellop.c"
void main(void)
{
char * pszString = "Hello, World";
HelloProc(pszString);
}