Go to the first, previous, next, last section, table of contents.


asirgui.hnd

asirguid.hnd
:: asirgui の main window のハンドル番号を保持するファイル
// cl test.c user32.lib

#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <process.h>

int main()
{

	HWND hnd;
	FILE *fp = fopen("c:/Program Files/asir/bin/asirgui.hnd","r");
	fscanf(fp,"%d",&hnd);
	fclose(fp);
	while (1) {
		int c;
		c = getchar();
		if ( c == '#' ) break;
		PostMessage(hnd,WM_CHAR,c,1);
	}
	return 0;
}
参照
@xref{xyz_abc}

ChangeLog


Go to the first, previous, next, last section, table of contents.