mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Change to make OCR work on 64 bit Windows, now using a small 32-bit exe to do the OCR'ing. (untested)
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2078 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
0d40ebe346
commit
abaf473d83
8 changed files with 934 additions and 16 deletions
14
GreenshotOCRCommand/IDispatch.cs
Normal file
14
GreenshotOCRCommand/IDispatch.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.InteropServices.CustomMarshalers;
|
||||
|
||||
namespace Greenshot.Interop {
|
||||
[ComImport, Guid("00020400-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
||||
public interface IDispatch {
|
||||
void Reserved();
|
||||
[PreserveSig]
|
||||
int GetTypeInfo(uint nInfo, int lcid, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(TypeToTypeInfoMarshaler))] out Type typeInfo);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue