the news UWP, now in win32!
Find a file
2026-01-18 20:40:36 +01:00
.github/workflows i have no idea 2025-07-11 18:10:55 +02:00
src Update icon.ico 2025-08-02 23:04:40 +02:00
.gitattributes Initial commit 2025-07-10 21:02:57 +02:00
.gitignore Update .gitignore 2025-07-10 21:05:22 +02:00
build.bat mege the .c and .h for the notifications 2025-07-11 17:38:01 +02:00
buildDLL.bat mege the .c and .h for the notifications 2025-07-11 17:38:01 +02:00
clean.bat inital commit 2025-07-10 21:04:38 +02:00
LICENSE Create LICENSE 2026-01-18 20:40:36 +01:00
README.md Update README.md 2025-07-10 22:02:32 +02:00

the news, win 32 edition

a win 32 edition of the first page of notifications from my UWP app

download

download it from the releases or download a dev build from the actions.

you can use the standalone exe or the dll. to use the dll look at the section below.

how 2 use as a dll in c/c++

download the dll from the respective page and then include the "thenews.h" file. then you could do something like this:

#include "thenews.h"

int main() {
    // you can do anything from the thenews.h file, but for this example we will use the random toast function
    ShowRandomToast()
    return 0;
}

then just compile with whatever compiler you use and use the .a or the .lib provided in the download!

building it yourself

if you want to build it yourself, you have to install visual studio 2022. when you install it, use the "x86/x64 Native Command Prompt for VS 2022". this command prompt has the compiling tools you need. then just run build.bat for an exe or buildDLL.bat if you want a dll.