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.

22 lines
706 B

  1. //(C) COPYRIGHT MICROSOFT CORP., 1998-1999
  2. #ifndef _EXTEND_H_
  3. #define _EXTEND_H_
  4. BOOL ShowMessage (HWND hParent, INT idCaption, INT idMessage);
  5. extern LONG g_cRef; // DLL reference counter.
  6. extern HINSTANCE g_hInst;
  7. void DllAddRef ();
  8. void DllRelease ();
  9. HRESULT CreateDeviceFromId (LPWSTR szDeviceId, IWiaItem **ppItem);
  10. LPWSTR GetNamesFromDataObject (IDataObject *lpdobj, UINT *puItems);
  11. DEFINE_GUID(CLSID_TestShellExt, 0xb6c280f7,0x0f07,0x11d3,0x94, 0xc7, 0x00, 0x80, 0x5f, 0x65, 0x96, 0xd2);
  12. // {EDB8B35D-C15F-4e45-9658-50D7F8ADDB56}
  13. DEFINE_GUID(CLSID_TestUIExtension, 0xedb8b35d, 0xc15f, 0x4e45, 0x96, 0x58, 0x50, 0xd7, 0xf8, 0xad, 0xdb, 0x56);
  14. #endif