Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

104 lines
2.6 KiB

#include <windows.h>
#include <winioctl.h>
#include <stdio.h>
#include <malloc.h>
#include <emsapi.h>
int _cdecl wmain(int argc, WCHAR **argv)
{
EMSRawChannel* channel;
UCHAR Buffer[256];
ULONG CharCount;
UCHAR AssembledString[1024];
ULONG TotalCharCount;
SAC_CHANNEL_OPEN_ATTRIBUTES Attributes;
DWORD dwStatus;
HANDLE LockEvent;
LockEvent = CreateEvent( NULL, FALSE, FALSE, NULL );
if (LockEvent == INVALID_HANDLE_VALUE) {
return 0;
}
//
// Configure the new channel
//
Attributes.Type = ChannelTypeVTUTF8;
Attributes.Name = L"locker";
Attributes.Description = NULL;
Attributes.Flags = SAC_CHANNEL_FLAG_LOCK_EVENT;
Attributes.CloseEvent = NULL;
Attributes.HasNewDataEvent = NULL;
Attributes.LockEvent = LockEvent;
Attributes.ApplicationType = NULL;
//
// Open the Hello channel
//
channel = EMSRawChannel::Construct(Attributes);
//
// See if the channel was created
//
if (channel == NULL) {
return 0;
}
do {
//
// Write to the Hello Channel
//
if (channel->Write(
(PBYTE)"Hello, World! waiting for lock event!\r\n",
sizeof("Hello, World! waiting for lock event!\r\n")
)) {
printf("Successfully printed string to channel\n");
} else {
printf("Failed to print string to channel\n");
break;
}
dwStatus = WaitForSingleObject(
LockEvent,
INFINITE
);
switch (dwStatus) {
case WAIT_OBJECT_0:
if (channel->Write(
(PBYTE)"Received lock event!\r\n",
sizeof("Received lock event!\r\n")
)) {
printf("Successfully printed string to channel\n");
} else {
printf("Failed to print string to channel\n");
break;
}
break;
default:
if (channel->Write(
(PBYTE)"DID NOT RECEIVE lock event!\r\n",
sizeof("DID NOT RECEIVE lock event!\r\n")
)) {
printf("Successfully printed string to channel\n");
} else {
printf("Failed to print string to channel\n");
break;
}
break;
}
} while (FALSE);
//
// Close the Hello Channel
//
delete channel;
return 0;
}