summaryrefslogtreecommitdiff
path: root/command_line/PluginLib/Src
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-01-15 12:14:05 +0000
committerAsh Wolf <ninji@wuffs.org>2023-01-15 12:14:05 +0000
commit35d488e972a9dd75ce3867c000405f128b79c615 (patch)
treee3319a23d9aa0d4725f88a99fdd5131488a334a9 /command_line/PluginLib/Src
parent8078e7f897aaae9b492b22475060052d68b9c547 (diff)
downloadMWCC-35d488e972a9dd75ce3867c000405f128b79c615.tar.gz
MWCC-35d488e972a9dd75ce3867c000405f128b79c615.zip
reorganise things a bit to align further with the actual names/structure
Diffstat (limited to '')
-rw-r--r--command_line/PluginLib/Src/Internal/COSToolsCLT.c (renamed from unsorted/uCOS.c)0
-rw-r--r--command_line/PluginLib/Src/Internal/CWSecretPluginCallbacks.cpp (renamed from unsorted/uContextSecret.cpp)0
-rw-r--r--command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp (renamed from unsorted/uContextParser.cpp)10
-rw-r--r--command_line/PluginLib/Src/Library/CWPluginsPrivate.cpp (renamed from unsorted/uContext1.cpp)4
-rw-r--r--command_line/PluginLib/Src/Library/DropInCompilerLinkerPrivate.cpp (renamed from unsorted/uContextCL.cpp)0
5 files changed, 7 insertions, 7 deletions
diff --git a/unsorted/uCOS.c b/command_line/PluginLib/Src/Internal/COSToolsCLT.c
index 11f1668..11f1668 100644
--- a/unsorted/uCOS.c
+++ b/command_line/PluginLib/Src/Internal/COSToolsCLT.c
diff --git a/unsorted/uContextSecret.cpp b/command_line/PluginLib/Src/Internal/CWSecretPluginCallbacks.cpp
index b33ca81..b33ca81 100644
--- a/unsorted/uContextSecret.cpp
+++ b/command_line/PluginLib/Src/Internal/CWSecretPluginCallbacks.cpp
diff --git a/unsorted/uContextParser.cpp b/command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp
index 35d6dfa..6973b4d 100644
--- a/unsorted/uContextParser.cpp
+++ b/command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp
@@ -7,16 +7,16 @@ static CWParserContext *GetContext(CWPluginContext context) {
return 0;
}
-CW_CALLBACK CWParserGetBuildDate(CWPluginContext context, const char **buildDate, const char **buildTime) {
+CW_CALLBACK CWParserGetBuildDate(CWPluginContext context, const char **bdate, const char **btime) {
CWParserContext *pc;
if (!(pc = GetContext(context)))
return cwErrInvalidCallback;
- if (!buildDate)
+ if (!bdate)
return cwErrInvalidParameter;
- if (!buildTime)
+ if (!btime)
return cwErrInvalidParameter;
- *buildDate = pc->build_date;
- *buildTime = pc->build_time;
+ *bdate = pc->build_date;
+ *btime = pc->build_time;
return cwNoErr;
}
diff --git a/unsorted/uContext1.cpp b/command_line/PluginLib/Src/Library/CWPluginsPrivate.cpp
index 7ac712d..2e0df81 100644
--- a/unsorted/uContext1.cpp
+++ b/command_line/PluginLib/Src/Library/CWPluginsPrivate.cpp
@@ -474,10 +474,10 @@ CW_CALLBACK CWPostFileAction(CWPluginContext context, const CWFileSpec *theFile)
return context->callbacks->cbPostFileAction(context, theFile);
}
-CW_CALLBACK CWCheckoutLicense(CWPluginContext context, const char *a, const char *b, SInt32 c, void *d, SInt32 *cookiePtr) {
+CW_CALLBACK CWCheckoutLicense(CWPluginContext context, const char *featureName, const char *licenseVersion, SInt32 flags, void *reserved, SInt32 *cookie) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
- return context->callbacks->cbCheckoutLicense(context, a, b, c, d, cookiePtr);
+ return context->callbacks->cbCheckoutLicense(context, featureName, licenseVersion, flags, reserved, cookie);
}
CW_CALLBACK CWCheckinLicense(CWPluginContext context, SInt32 cookie) {
diff --git a/unsorted/uContextCL.cpp b/command_line/PluginLib/Src/Library/DropInCompilerLinkerPrivate.cpp
index 2c0a0c7..2c0a0c7 100644
--- a/unsorted/uContextCL.cpp
+++ b/command_line/PluginLib/Src/Library/DropInCompilerLinkerPrivate.cpp