diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-24 08:21:28 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-24 08:21:28 +0000 |
commit | 690f5e6d29d1c85c4be72638eb22843964c2f512 (patch) | |
tree | 47c50956fef107bb1004f9389b817cbe3626d919 /plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc | |
parent | e7112d3e58f97fa0630e0afa04e27796cdf3ce38 (diff) |
All non-working stuff moved from trunk
git-svn-id: http://svn.miranda-ng.org/main/trunk@13071 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc')
-rw-r--r-- | plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc b/plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc deleted file mode 100644 index 82b002b5db..0000000000 --- a/plugins/!Deprecated/ExternalAPI/delphi/m_fuse.inc +++ /dev/null @@ -1,28 +0,0 @@ -{$IFNDEF M_FUSE}
-{$DEFINE M_FUSE}
-
-const
- FUSE_INIT = 0; // core started, Param=**FUSE_LINK
- FUSE_DEINIT = 1; // core stopped
- FUSE_DEFMOD = 3; // LoadDefaultModules() return code, Param=*int
- FUSE_DEATH = 4; // DestroyingModularEngine() just got called
-
-type
- PFUSE_LINK = ^TFUSE_LINK;
- TFUSE_LINK = record
- cbSize : longint;
- CreateHookableEvent : function (para1:PAnsiChar):THANDLE;cdecl;
- DestroyHookableEvent : function (para1:THANDLE):longint;cdecl;
- NotifyEventHooks : function (para1:THANDLE; para2:WPARAM; para3:LPARAM):longint;cdecl;
- HookEvent : function (para1:PAnsiChar; para2:TMIRANDAHOOK):THANDLE;cdecl;
- HookEventMessage : function (para1:PAnsiChar; para2:HWND; para3:dword):THANDLE;cdecl;
- UnhookEvent : function (para1:THANDLE):longint;cdecl;
- CreateServiceFunction : function (para1:PAnsiChar; para2:TMIRANDASERVICE):THANDLE;cdecl;
- CreateTransientServiceFunction : function (para1:PAnsiChar; para2:TMIRANDASERVICE):THANDLE;cdecl;
- DestroyServiceFunction : function (para1:THANDLE):longint;cdecl;
- CallService : function (para1:PAnsiChar; para2:WPARAM; para3:LPARAM):longint;cdecl;
- ServiceExists : function (para1:PAnsiChar):longint;cdecl; {v0.1.0.1+ }
- CallServiceSync : function (para1:PAnsiChar; para2:WPARAM; para3:LPARAM):longint;cdecl; {v0.1.2.2+ }
- end;
-
-{$ENDIF}
|