home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
os2sdk
/
os2sdk11
/
petzold
/
chap02
/
wel.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1989-02-20
|
403 b
|
19 lines
/*-------------------------------------------------
WEL.C -- A Program that Creates a Message Queue
-------------------------------------------------*/
#include <os2.h>
int main (void)
{
HAB hab ;
HMQ hmq ;
hab = WinInitialize (0) ;
hmq = WinCreateMsgQueue (hab, 0) ;
WinDestroyMsgQueue (hmq) ;
WinTerminate (hab) ;
return 0 ;
}