Subversion Repositories userdetect2

Rev

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

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