~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to Nux/Nux.cpp

  • Committer: Jay Taoko
  • Date: 2011-10-21 23:49:15 UTC
  • mfrom: (508.1.2 nux-20)
  • Revision ID: jay.taoko@canonical.com-20111021234915-hnzakb5ndebica8i
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  }
40
40
 
41
41
  static WindowThread *_CreateModalWindowThread(const char *WindowTitle,
42
 
      t_u32 width,
43
 
      t_u32 height,
 
42
      unsigned int width,
 
43
      unsigned int height,
44
44
      WindowThread *Parent,
45
45
      ThreadUserInitFunc UserInitFunc,
46
46
      void *InitData,
59
59
  }
60
60
 
61
61
  WindowThread *CreateGUIThread(const char *WindowTitle,
62
 
                                 t_u32 width,
63
 
                                 t_u32 height,
 
62
                                 unsigned int width,
 
63
                                 unsigned int height,
64
64
                                 WindowThread *Parent,
65
65
                                 ThreadUserInitFunc UserInitFunc,
66
66
                                 void *InitData)
165
165
// Create a window thread that is a child of the Parent. This thread has a window.
166
166
  WindowThread *CreateWindowThread(WindowStyle WndStyle,
167
167
                                    const char *WindowTitle,
168
 
                                    t_u32 width,
169
 
                                    t_u32 height,
 
168
                                    unsigned int width,
 
169
                                    unsigned int height,
170
170
                                    WindowThread *Parent,
171
171
                                    ThreadUserInitFunc UserInitFunc,
172
172
                                    void *InitData)
191
191
// Create modal graphics thread that is a child of the Parent. This thread has a window.
192
192
  WindowThread *CreateModalWindowThread(WindowStyle WndStyle,
193
193
                                         const char *WindowTitle,
194
 
                                         t_u32 width,
195
 
                                         t_u32 height,
 
194
                                         unsigned int width,
 
195
                                         unsigned int height,
196
196
                                         WindowThread *Parent,
197
197
                                         ThreadUserInitFunc UserInitFunc,
198
198
                                         void *InitData)