Source code of Windows XP (NT5)
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.
|
|
/*****************************************************************************\
* MODULE: wpnpin32.h * * Entry/Exit Routines for the library. * * * Copyright (C) 1997-1998 Hewlett-Packard Company. * Copyright (C) 1997-1998 Microsoft Corporation. * * History: * 10-Oct-1997 GFS Initial checkin * 23-Oct-1997 GFS Modified PrintUIEntry to PrintUIEntryW * 22-Jun-1998 CHW Cleaned * \*****************************************************************************/
#ifdef __cplusplus // Place this here to prevent decorating of symbols
extern "C" { // when doing C++ stuff.
#endif //
#define DLLEXPORT __declspec(dllexport)
/*-----------------------------------*\
| API Routines \*-----------------------------------*/ DLLEXPORT DWORD WINAPI PrintUIEntryA(HWND, HINSTANCE, LPCSTR , int); DLLEXPORT DWORD WINAPI PrintUIEntryW(HWND, HINSTANCE, LPCWSTR, int);
#ifdef __cplusplus // Place this here to prevent decorating of symbols
} // when doing C++ stuff.
#endif //
|