mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-30 22:20:50 +00:00
remove svn keywords
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
---
|
||||
# $Id$
|
||||
Language: Cpp
|
||||
UseTab: Always
|
||||
TabWidth: 8
|
||||
|
||||
1
BorMakefile
generated
1
BorMakefile
generated
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
CC = bcc32 -c
|
||||
LD = bcc32
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
project(
|
||||
milsko
|
||||
|
||||
1
Doxyfile
1
Doxyfile
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
PROJECT_LOGO = resource/logo/logo64.png
|
||||
PROJECT_NAME = Milsko
|
||||
PROJECT_BRIEF = "Lightweight and fast GUI toolkit"
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
# vim: syntax=tcl
|
||||
|
||||
proc run {project_name} {
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env perl
|
||||
# $Id$
|
||||
our $target = `uname -s`;
|
||||
$target =~ s/\r?\n$//;
|
||||
|
||||
|
||||
1
NTMakefile
generated
1
NTMakefile
generated
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
CC = cl /TC /c /nologo
|
||||
LD = link /nologo
|
||||
|
||||
|
||||
1
WatMakefile
generated
1
WatMakefile
generated
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
CC = wcc386 -bt=nt -q -bd
|
||||
LD = wlink option quiet
|
||||
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
# $Id$
|
||||
add_subdirectory(basic)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
file(
|
||||
GLOB
|
||||
EXAMPLES_BASIC_SOURCES
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
int main() {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
int main(){
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
MwWidget window, menu, button, button2, button3, button4;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
int main() {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "../harvard.c"
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
void ok(MwWidget handle, void* user, void* call) {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
int main() {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/* this demo does not work well on windows */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
MwWidget vp;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#define TITLE "boing"
|
||||
#include "glutlayer.c"
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
#include <Mw/Widget/OpenGL.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#define TITLE "cube"
|
||||
#include "glutlayer.c"
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#define TITLE "gears"
|
||||
#include "glutlayer.c"
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
#include <Mw/Widget/OpenGL.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
#include <Mw/Widget/OpenGL.h>
|
||||
|
||||
|
||||
1445
examples/harvard.c
1445
examples/harvard.c
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
|
||||
/**
|
||||
* this example is quite minimal, you may need to modify it if your graphics card is more esoteric
|
||||
|
||||
1
external/stb_ds.c
generated
vendored
1
external/stb_ds.c
generated
vendored
@@ -1,3 +1,2 @@
|
||||
/* $Id$ */
|
||||
#define STB_DS_IMPLEMENTATION
|
||||
#include "stb_ds.h"
|
||||
|
||||
1
external/stb_image.c
generated
vendored
1
external/stb_image.c
generated
vendored
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#ifdef USE_STB_IMAGE
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include "stb_image.h"
|
||||
|
||||
1
external/stb_truetype.c
generated
vendored
1
external/stb_truetype.c
generated
vendored
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#ifdef USE_STB_TRUETYPE
|
||||
#define STB_TRUETYPE_IMPLEMENTATION
|
||||
#include "stb_truetype.h"
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Abstract/Directory.h
|
||||
* @brief Directory functions
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Abstract/Dynamic.h
|
||||
* @brief Dynamic library
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Abstract/Time.h
|
||||
* @brief Time
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/BaseTypes.h
|
||||
* @brief Base type definitions
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Constants.h
|
||||
* @brief Constants
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Core.h
|
||||
* @brief Core
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Default.h
|
||||
* @brief Default properties
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Dialog/ColorPicker.h
|
||||
* @brief Color picker
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Dialog/DirectoryChooser.h
|
||||
* @brief Directory chooser
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Dialog/FileChooser.h
|
||||
* @brief File chooser
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Dialog/MessageBox.h
|
||||
* @brief Message box
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Draw.h
|
||||
* @brief Common drawing API
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Error.h
|
||||
* @brief Error codes
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Font.h
|
||||
* @brief Font
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/LowLevel.h
|
||||
* @brief Low-level drawing API
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/LowLevel/GDI.h
|
||||
* @brief GDI Backend
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/LowLevel/X11.h
|
||||
* @brief X11 Backend
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/MachDep.h
|
||||
* @brief Machine dependent headers and macros
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Milsko.h
|
||||
* @brief Includes all headers
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Resource/Cursor.h
|
||||
* @brief Cursor externs
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Resource/Font.h
|
||||
* @brief Default font resources
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Resource/Icon.h
|
||||
* @brief Icon
|
||||
@@ -92,6 +91,105 @@ MWDECL MwU32 MwIconUp[];
|
||||
*/
|
||||
MWDECL MwU32 MwIconWarning[];
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
/*!
|
||||
* @file Mw/Resource/Icon.h
|
||||
* @brief Icon
|
||||
*/
|
||||
#ifndef __MW_RESOURCE_ICON_H__
|
||||
#define __MW_RESOURCE_ICON_H__
|
||||
|
||||
#include <Mw/MachDep.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* @brief Back icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconBack[];
|
||||
|
||||
/*!
|
||||
* @brief Clock icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconClock[];
|
||||
|
||||
/*!
|
||||
* @brief Computer icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconComputer[];
|
||||
|
||||
/*!
|
||||
* @brief Directory icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconDirectory[];
|
||||
|
||||
/*!
|
||||
* @brief Down icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconDown[];
|
||||
|
||||
/*!
|
||||
* @brief Error icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconError[];
|
||||
|
||||
/*!
|
||||
* @brief File icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconFile[];
|
||||
|
||||
/*!
|
||||
* @brief Forward icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconForward[];
|
||||
|
||||
/*!
|
||||
* @brief Info icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconInfo[];
|
||||
|
||||
/*!
|
||||
* @brief Left icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconLeft[];
|
||||
|
||||
/*!
|
||||
* @brief News icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconNews[];
|
||||
|
||||
/*!
|
||||
* @brief Note icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconNote[];
|
||||
|
||||
/*!
|
||||
* @brief Right icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconRight[];
|
||||
|
||||
/*!
|
||||
* @brief Search icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconSearch[];
|
||||
|
||||
/*!
|
||||
* @brief Up icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconUp[];
|
||||
|
||||
/*!
|
||||
* @brief Warning icon
|
||||
*/
|
||||
MWDECL MwU32 MwIconWarning[];
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/String.h
|
||||
* @brief String utilities
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/StringDefs.h
|
||||
* @brief String definitions for property
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/TypeDefs.h
|
||||
* @brief Type definitions
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Unicode.h
|
||||
* @brief Handles UTF8 stuff
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Version.h
|
||||
* @brief Version informations
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Button.h
|
||||
* @brief Button widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id: CheckBox.h 206 2025-10-07 15:10:46Z nishi $ */
|
||||
/*!
|
||||
* @file Mw/Widget/CheckBox.h
|
||||
* @brief CheckBox widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id: ComboBox.h 206 2025-10-07 15:10:46Z nishi $ */
|
||||
/*!
|
||||
* @file Mw/Widget/ComboBox.h
|
||||
* @brief ComboBox widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Entry.h
|
||||
* @brief Entry widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Frame.h
|
||||
* @brief Frame widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Image.h
|
||||
* @brief Image widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Label.h
|
||||
* @brief Label widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/ListBox.h
|
||||
* @brief ListBox widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Menu.h
|
||||
* @brief Menu widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/NumberEntry.h
|
||||
* @brief NumberEntry widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/OpenGL.h
|
||||
* @brief OpenGL widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/ProgressBar.h
|
||||
* @brief ProgressBar widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id: RadioBox.h 206 2025-10-07 15:10:46Z nishi $ */
|
||||
/*!
|
||||
* @file Mw/Widget/RadioBox.h
|
||||
* @brief RadioBox widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/ScrollBar.h
|
||||
* @brief ScrollBar widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Separator.h
|
||||
* @brief Separator widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/SubMenu.h
|
||||
* @brief SubMenu widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/TreeView.h
|
||||
* @brief TreeView widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Viewport.h
|
||||
* @brief Viewport widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Vulkan.h
|
||||
* @brief Vulkan widget
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/*!
|
||||
* @file Mw/Widget/Window.h
|
||||
* @brief Window widget
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<!--
|
||||
Basically, you have to implement 10+n types:
|
||||
- Integer (int)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
use_backend("x11");
|
||||
|
||||
1;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
add_incdir("-I/usr/X11R7/include -I/usr/pkg/include");
|
||||
add_libdir(
|
||||
"-L/usr/X11R7/lib -Wl,-R/usr/X11R7/lib -L/usr/pkg/lib -Wl,-R/usr/pkg/lib");
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
use_backend("x11");
|
||||
|
||||
1;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
add_libs("-lsocket -lnsl");
|
||||
use_backend("x11");
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
$library_prefix = "";
|
||||
$library_suffix = ".dll";
|
||||
$executable_suffix = ".exe";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
new_object("src/*.c");
|
||||
|
||||
my $gl_libs = "";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# $Id$
|
||||
sub add_incdir {
|
||||
my $input = $_[0];
|
||||
$input =~ s/\r?\n/ /g;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id $*/
|
||||
#declare FAR = 2.25;
|
||||
#declare Y = -0.5;
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#declare BASE = 1;
|
||||
#include "resource/logo/logo.pov"
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
// $Id$
|
||||
#include "shapes.inc"
|
||||
#include "colors.inc"
|
||||
#include "textures.inc"
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
/* This file gets included by backend */
|
||||
#define CALL(NAME) \
|
||||
int MwLL##NAME##CallInit(void) { \
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
typedef struct userdata {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "../../external/stb_ds.h"
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
MwLLColor MwParseColorName(MwWidget handle, const char* color) {
|
||||
MwLLColor MwParseColorName(MwWidget handle, const char* color){
|
||||
if(strcmp(color, "snow") == 0) return MwLLAllocColor(handle->lowlevel, 255, 250, 250);
|
||||
if(strcmp(color, "ghost white") == 0) return MwLLAllocColor(handle->lowlevel, 248, 248, 255);
|
||||
if(strcmp(color, "GhostWhite") == 0) return MwLLAllocColor(handle->lowlevel, 248, 248, 255);
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "../external/stb_ds.h"
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
/**
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user