27 lines
383 B
C
27 lines
383 B
C
/*
|
|
**++
|
|
**
|
|
** Copyright (c) Microsoft Corporation
|
|
**
|
|
**
|
|
** Module Name:
|
|
**
|
|
** main.h
|
|
**
|
|
**
|
|
** Abstract:
|
|
**
|
|
** Test program to to register a Writer with various properties
|
|
**
|
|
*/
|
|
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
extern "C" int __cdecl wmain(__in int argc, __in_ecount(argc)wchar_t ** argv);
|
|
void loadFile(__in wchar_t* fileName);
|
|
BOOL WINAPI handler(DWORD dwCtrlType);
|
|
|
|
#endif
|
|
|