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.
35 lines
498 B
35 lines
498 B
/*
|
|
**++
|
|
**
|
|
** Copyright (c) 2000-2001 Microsoft Corporation
|
|
**
|
|
**
|
|
** Module Name:
|
|
**
|
|
** main.h
|
|
**
|
|
**
|
|
** Abstract:
|
|
**
|
|
** Test program to to register a Writer with various properties
|
|
**
|
|
** Author:
|
|
**
|
|
** Reuven Lax [reuvenl] 04-June-2002
|
|
**
|
|
**
|
|
**
|
|
** Revision History:
|
|
**
|
|
**--
|
|
*/
|
|
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
extern "C" __cdecl wmain(int argc, wchar_t ** argv);
|
|
void loadFile(wchar_t* fileName);
|
|
BOOL WINAPI handler(DWORD dwCtrlType);
|
|
|
|
#endif
|
|
|