Changeset 838

Show
Ignore:
Timestamp:
08/06/08 20:49:18 (4 years ago)
Author:
mwhitworth
Message:

Make sure registry server builds.

Location:
Whitix/trunk/user/system/registry/server
Files:
2 added
4 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/user/system/registry/server/Makefile

    r837 r838  
    11CFLAGS = -g -ffreestanding -fno-builtin -I../../../libc/include -I../../../librtl \ 
    22         -I../../../sdk/include -fno-stack-protector -DMODULE -m32 
    3 OBJS = main.o 
     3OBJS = main.o keyset.o key.o 
    44 
    55.c.o: 
  • Whitix/trunk/user/system/registry/server/keyset.c

    r837 r838  
     1#include "keyset.h" 
     2 
     3struct RegKeySet root; 
     4 
     5int RegKeySetCreateRoot() 
     6{ 
     7         
     8} 
     9 
     10struct RegKeySet* RegKeySetCreate(char* name) 
     11{ 
     12        struct RegKeySet* ret; 
     13         
     14        /* Parse the path. */ 
     15         
     16} 
  • Whitix/trunk/user/system/registry/server/keyset.h

    r837 r838  
    11#ifndef SERVER_KEYSET_H 
    22#define SERVER_KEYSET_H 
     3 
     4#include "key.h" 
    35 
    46/* STRUCT RegKeySet: 
  • Whitix/trunk/user/system/registry/server/main.c

    r837 r838  
    11#include <stdio.h> 
    22#include <network.h> 
    3  
    4 struct RegKeySet* root; 
    5  
    6 int RegKeySetCreateRoot() 
    7 { 
    8          
    9 } 
    10  
    11 struct RegKeySet* RegKeySetCreate(char* name) 
    12 { 
    13         struct RegKeySet* ret; 
    14          
    15         /* Parse the path. */ 
    16          
    17 } 
    183 
    194int main(int argc, char** argv[])