webui/examples/C
Hassan DRAGA efe64ba0af Updating example - public_network_access
* Allowing public URL to be updated on refresh
2024-07-03 09:26:22 -04:00
..
call_c_from_js MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
call_js_from_c MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
custom_web_server MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
minimal MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
public_network_access Updating example - public_network_access 2024-07-03 09:26:22 -04:00
serve_a_folder MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
text-editor MSVC Makefile - Keep .pdb (Debug Symbols) 2024-06-30 23:33:19 -04:00
README.md C99 to C 2023-10-28 19:51:02 -04:00

WebUI C Examples

Examples of how to create a WebUI application in C.

C Examples

The only requirement to build the examples is a C compiler.

  • minimal: Creates a minimal WebUI application.
  • call_c_from_js: Calls C from JavaScript.
  • call_js_from_c: Calls JavaScript from C.
  • serve_a_folder: Use WebUI to serve a folder that contains .html, .css, .js, or .ts files.
  • custom_web_server: Use your preferred web server like NGINX/Apache... with WebUI to serve a folder.

To build an example, cd into its directory and run the make command.

  • Windows

    # GCC
    mingw32-make
    
    # MSVC
    nmake
    
  • Linux

    # GCC
    make
    
    # Clang
    make CC=clang
    
  • macOS

    make
    

Additional Examples

  • text-editor: A lightweight and portable text editor written in C using WebUI as the GUI library.