Skip to content

Commit

Permalink
Json meta to IDL changes: for device identification
Browse files Browse the repository at this point in the history
  • Loading branch information
HaseenaSainul committed Nov 29, 2024
1 parent 78ffa9e commit c8123ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion definitions/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@ file(GLOB QA_INTERFACE_FILE ${WORKING_VARIABLE})
if(ENABLE_LEGACY_INTERFACE_SUPPORT)
list(REMOVE_ITEM INTERFACE_FILE
"${CMAKE_SOURCE_DIR}/interfaces/IBrowserExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/IDeviceIdentification.h"
"${CMAKE_SOURCE_DIR}/interfaces/IDeviceInfoExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/IMonitor.h"
"${CMAKE_SOURCE_DIR}/interfaces/IOCDMExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/ISecurityAgent.h")
else()
list(REMOVE_ITEM JSON_FILE "${CMAKE_SOURCE_DIR}/jsonrpc/DeviceInfo.json"
list(REMOVE_ITEM JSON_FILE
"${CMAKE_SOURCE_DIR}/jsonrpc/DeviceInfo.json"
"${CMAKE_SOURCE_DIR}/jsonrpc/DeviceIdentification.json"
"${CMAKE_SOURCE_DIR}/jsonrpc/Monitor.json"
"${CMAKE_SOURCE_DIR}/jsonrpc/OCDM.json"
"${CMAKE_SOURCE_DIR}/jsonrpc/SecurityAgent.json"
Expand Down
1 change: 1 addition & 0 deletions interfaces/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ separate_arguments(INTERFACES_PATTERNS)
file(GLOB INTERFACES_HEADERS ${INTERFACES_PATTERNS})
if(ENABLE_LEGACY_INTERFACE_SUPPORT)
list(REMOVE_ITEM INTERFACES_HEADERS "${CMAKE_SOURCE_DIR}/interfaces/IBrowserExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/IDeviceIdentification.h"
"${CMAKE_SOURCE_DIR}/interfaces/IDeviceInfoExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/ICompositionExt.h"
"${CMAKE_SOURCE_DIR}/interfaces/IMonitor.h"
Expand Down
4 changes: 3 additions & 1 deletion interfaces/Ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,9 @@ namespace Exchange {
ID_MONITOR = RPC::IDS::ID_EXTERNAL_INTERFACE_OFFSET + 0x500,
ID_MONITOR_NOTIFICATION = ID_MONITOR + 1,

ID_SECURITYAGENT = RPC::IDS::ID_EXTERNAL_INTERFACE_OFFSET + 0x510
ID_SECURITYAGENT = RPC::IDS::ID_EXTERNAL_INTERFACE_OFFSET + 0x510,

ID_DEVICEIDENTIFICATION = RPC::IDS::ID_EXTERNAL_INTERFACE_OFFSET + 0x520
};
}
}

0 comments on commit c8123ea

Please sign in to comment.