diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-08-30 12:21:47 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-08-30 12:23:01 +0200 |
commit | 10ab61225dfe255d9ac0104f7ced6fc6074308a8 (patch) | |
tree | cac05b04303fc564823f0b0fb7908d8c5f58a664 | |
parent | 5b01d3f689c24581093ec0eb378337614dd99016 (diff) |
README.md update1.2release-1.2
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | README.md | 21 |
1 files changed, 19 insertions, 2 deletions
@@ -1,5 +1,5 @@ [](https://github.com/utoni/mingw-w64-ddk-template/actions/workflows/build.yml) -[](https://gitlab.com/utoni/mingw-w64-ddk-template/-/pipelines) +[](https://gitlab.com/utoni/mingw-w64-ddk-template/-/pipelines) [](https://app.circleci.com/pipelines/github/utoni/mingw-w64-ddk-template) # Mingw64 Driver Plus Plus @@ -84,7 +84,7 @@ Most of the time copy&pasting missing libc/libgcc functions from various online Remember: The CRT/CRT++ **sets a driver unload function** meaning that code .e.g.: ```C -NTSTATUS MyDriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath) +NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath) { DriverObject->DriverUnload = MyDriverUnload; } @@ -96,6 +96,21 @@ Make sure that the symbol `DriverUnload` exists and has the usual ddk function s `void DriverUnload(_In_ struct _DRIVER_OBJECT * DriverObject)`. This is required to make ctors/dtors work without calling additional functions in `DriverEntry` / `DriverUnload`. +Do not forget to disable `C++ name mangeling` if your driver source is compiled with `g++`: + +```C++ +extern "C" { +NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT *DriverObject, _In_ PUNICODE_STRING RegistryPath) +{ + // ... +} +VOID DriverUnload(_In_ struct _DRIVER_OBJECT *DriverObject) +{ + // ... +} +} +``` + ## Host EASTL/CRT/CRT++ Build It is possible to build parts of the repository for your host distribution. @@ -139,6 +154,8 @@ $(USERSPACE_TARGET): $(USERSPACE_OBJECTS) $(call LINK_CPP_USER_TARGET,$(USERSPACE_OBJECTS),$@) ``` +[A simple and stupid project example.](https://github.com/utoni/mingw-w64-driver) + ## Thanks goes to: - [Zeranoe](https://github.com/Zeranoe/mingw-w64-build) for the Mingw64 build script |