Implement BlGetVolumeDevicePath() and BlpDissectVolumeArcPath()
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-08-22 20:09:50 +02:00
parent 6d135ce209
commit f03b79ee2f
5 changed files with 311 additions and 1 deletions

19
sdk/xtdk/rtltypes.h Normal file
View File

@@ -0,0 +1,19 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/rtltypes.h
* DESCRIPTION: Runtime library structures definitions
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_RTLTYPES_H
#define __XTDK_RTLTYPES_H
#include "xttypes.h"
/* UUID string lengths */
#define GUID_STRING_LENGTH 38
#define PARTUUID_STRING_LENGTH 13
#endif /* __XTDK_RTLTYPES_H */

View File

@@ -23,4 +23,5 @@
#include "xtuefi.h"
/* Low level data types headers */
#include "rtltypes.h"
#include "hltypes.h"