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 72... Line 72...
72
function CheckLicense(lpReserved: LPVOID): UD2_STATUS; cdecl;
72
function CheckLicense(lpReserved: LPVOID): UD2_STATUS; cdecl;
73
begin
73
begin
74
  result := UD2_STATUS_OK_LICENSED;
74
  result := UD2_STATUS_OK_LICENSED;
75
end;
75
end;
76
 
76
 
-
 
77
function DescribeOwnStatusCodeW(lpErrorDescription: LPWSTR; cchSize: DWORD; statusCode: UD2_STATUS; wLangID: LANGID): BOOL; cdecl;
-
 
78
begin
-
 
79
  // This function does not use non-generic status codes
-
 
80
  result := FALSE;
-
 
81
end;
-
 
82
 
77
exports
83
exports
78
  PluginInterfaceID         name mnPluginInterfaceID,
84
  PluginInterfaceID         name mnPluginInterfaceID,
79
  PluginIdentifier          name mnPluginIdentifier,
85
  PluginIdentifier          name mnPluginIdentifier,
80
  PluginNameW               name mnPluginNameW,
86
  PluginNameW               name mnPluginNameW,
81
  PluginVendorW             name mnPluginVendorW,
87
  PluginVendorW             name mnPluginVendorW,
82
  PluginVersionW            name mnPluginVersionW,
88
  PluginVersionW            name mnPluginVersionW,
83
  IdentificationMethodNameW name mnIdentificationMethodNameW,
89
  IdentificationMethodNameW name mnIdentificationMethodNameW,
84
  IdentificationStringW     name mnIdentificationStringW,
90
  IdentificationStringW     name mnIdentificationStringW,
85
  CheckLicense              name mnCheckLicense;
91
  CheckLicense              name mnCheckLicense,
-
 
92
  DescribeOwnStatusCodeW    name mnDescribeOwnStatusCodeW;
86
 
93
 
87
end.
94
end.