Subversion Repositories userdetect2

Rev

Rev 69 | Rev 71 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 69 Rev 70
Line 59... Line 59...
59
function CheckLicense(lpReserved: LPVOID): UD2_STATUS; cdecl;
59
function CheckLicense(lpReserved: LPVOID): UD2_STATUS; cdecl;
60
begin
60
begin
61
  result := UD2_STATUS_OK_LICENSED;
61
  result := UD2_STATUS_OK_LICENSED;
62
end;
62
end;
63
 
63
 
-
 
64
function DescribeOwnStatusCodeW(lpErrorDescription: LPWSTR; cchSize: DWORD; statusCode: UD2_STATUS; wLangID: LANGID): BOOL; cdecl;
-
 
65
begin
-
 
66
  // This function does not use non-generic status codes
-
 
67
  result := FALSE;
-
 
68
end;
-
 
69
 
64
exports
70
exports
65
  PluginInterfaceID         name mnPluginInterfaceID,
71
  PluginInterfaceID         name mnPluginInterfaceID,
66
  PluginIdentifier          name mnPluginIdentifier,
72
  PluginIdentifier          name mnPluginIdentifier,
67
  PluginNameW               name mnPluginNameW,
73
  PluginNameW               name mnPluginNameW,
68
  PluginVendorW             name mnPluginVendorW,
74
  PluginVendorW             name mnPluginVendorW,
69
  PluginVersionW            name mnPluginVersionW,
75
  PluginVersionW            name mnPluginVersionW,
70
  IdentificationMethodNameW name mnIdentificationMethodNameW,
76
  IdentificationMethodNameW name mnIdentificationMethodNameW,
71
  IdentificationStringW     name mnIdentificationStringW,
77
  IdentificationStringW     name mnIdentificationStringW,
72
  CheckLicense              name mnCheckLicense;
78
  CheckLicense              name mnCheckLicense,
-
 
79
  DescribeOwnStatusCodeW    name mnDescribeOwnStatusCodeW;
73
 
80
 
74
end.
81
end.