mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
renamed "session" to "handle"
This commit is contained in:
parent
112904b832
commit
088a2de9a6
1 changed files with 3 additions and 3 deletions
|
@ -89,9 +89,9 @@ Result ConnectToPort(void* out, const char* port_name) {
|
|||
}
|
||||
|
||||
/// Synchronize to an OS service
|
||||
Result SendSyncRequest(Handle session) {
|
||||
DEBUG_LOG(SVC, "SendSyncRequest called session=0x%08X");
|
||||
Service::Interface* service = Service::g_manager->FetchFromHandle(session);
|
||||
Result SendSyncRequest(Handle handle) {
|
||||
DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X");
|
||||
Service::Interface* service = Service::g_manager->FetchFromHandle(handle);
|
||||
service->Sync();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue